@charset "utf-8";
/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1200px;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: #8F0009;
    text-decoration:none;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
::selection{
    color: #fff;
    background: #8F0009;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #fff;
    font-size: 12px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
    font-size: 12px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
    font-size: 12px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
    font-size: 12px;
}

/*头部*/
.header{
    height: 196px;
    background: url(../images/header-bg.png) no-repeat center center;
    position: relative;
    z-index: 99;
}
.header .logo img{
    margin-top: 30px;
    animation: slideInDown 1s;
}
.header .mask{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -75px;
    animation: zoomIn 1s;
}
.search{
    float: right;
    position: relative;
}
.search p{
    text-align: right;
    margin: 20px 0 10px;
}
.search p span{
    color: #fff;
    padding: 0 5px;
}
.search p a{
    color: #fff;
}
.search p a:hover{
    text-decoration: underline;
}
.search input{
    float: right;
}
.search input[type='text']{
    height: 30px;
    line-height: 30px;
    width: 200px;
    padding: 0 15px 0 15px;
    color: #fff;
    background: #B41E27;
    border: none;
}
.search input[type='submit']{
    width: 35px;
    height: 30px;
    border: none;
    color: #fff;
    padding: 0;
    background: #fff url(../images/search.png) no-repeat center center;
    cursor: pointer;
}
/*导航栏*/
.menu{
    height: 50px;
    margin-top: 26px;
    text-align: center;
}
.menu>li{
    float: left;
    width: 125px;
    position: relative;
}
.menu>li:nth-child(5){
    margin-left: 200px;
}
.menu>li>a{
    display: block;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
}
.menu>li:hover{
    background: #E72C11;
}
.second-menu{
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    display: none;
}
.second-menu a{
    position: relative;
    display: block;
    line-height: 50px;
    color: #E72C11;
    border-top: 1px solid #F2F0E5;
}
.second-menu a:hover{
    color: #fff;
    background: #E72C11;
}

.section{
    position: relative;
    min-height: 500px;
    background: #fff;
}
.section .container{
    margin: 30px auto;
}

.title{
    height: 30px;
    line-height: 30px;
    margin-bottom: 25px;
}
.title h2{
    float: left;
    position: relative;
    padding-left: 130px;
    font-size: 24px;
}
.title h2:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 120px;
    height: 1px;
    background: #8F0009;
}
.title h2:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 85px;
    width: 35px;
    height: 7px;
    margin-top: -3px;
    background: #8F0009;
}

/*树达新闻*/
.news{
    float: left;
    width: 830px;
}
.news-img{
    float: left;
    width: 402px;
}
.news-img .img{
    display: block;
    width: 402px;
    height: 208px;
    overflow: hidden;
}
.news-img img{
    display: inline-block;
    width: 402px;
    min-height: 208px;
}
.news-img img:hover{
    transform: scale(1.1);
}
.news-img h3{
    margin: 15px 0 20px;
    font-size: 16px;
    font-weight: normal;
}
.news-img p{
    height: 50px;
    line-height: 25px;
    color: #666;
    margin-bottom: 20px;
    overflow: hidden;
}
.news-img span{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 15px 0 35px;
    color: #8F0009;
    border: 1px solid #8F0009;
    background: url(../images/time.png) no-repeat 15px center;
}
.news-img .more{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    padding: 0 15px;
    margin-left: 5px;
    background: #8F0009;
}
.news-img .more:hover{
    opacity: .8;
}
.news-list{
    float: right;
    width: 400px;
}
.news-list li{
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #EAEAEA;
}
.news-list li:last-child{
    margin-bottom: 5px;
}
.news-list li p{
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    margin-bottom: 2px;
}
.news-list li p:before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #8F0009;
}
.news-list li span{
    padding-left: 15px;
    color: #999;
    font-size: 12px;
}

/*通知公告*/
.notice{
    float: right;
    width: 330px;
    height: 435px;
}
.notice .news-list{
    width: 100%;
}
/*.notice li i{*/
    /*color: #8F0009;*/
    /*font-size: 18px;*/
    /*font-style: normal;*/
/*}*/
/*.notice li span{*/
    /*padding-left: 10px;*/
    /*color: #999;*/
    /*font-size: 12px;*/
/*}*/
/*.notice li p{*/
    /*height: 50px;*/
    /*line-height: 25px;*/
    /*overflow: hidden;*/
    /*margin: 5px 0 20px;*/
    /*font-size: 16px;*/
/*}*/
/*.notice li:last-child p{*/
    /*margin-bottom: 0;*/
/*}*/

/*专题专栏*/
.special{
    padding: 5px 0;
    background: #EAEAEA;
}
.special .bd{
    margin: 40px 0 5px;
    overflow: hidden;
}
.special ul{
    height: 122px;
    overflow: hidden;
}
.special ul li{
    float: left;
    width: 380px;
    margin-right: 30px;
}
.special ul li:last-child{
    margin-right: 0;
}
.special ul li a{
    display: block;
    width: 380px;
    height: 122px;
    overflow: hidden;
}
.special ul li a img{
    width: 380px;
    height: 122px;
    transition: .3s;
}
.special ul li a:hover img{
    transform: scale(1.1);
}

/*菁菁校园*/
.campus{
    float: left;
    width: 650px;
}
.campus-img .lf{
    width: 186px;
    height: 108px;
    overflow: hidden;
}
.campus-img img{
    display: inline-block;
    width: 100%;
    min-height: 108px;
}
.campus-img .info{
    margin-left: 200px;
    height: 108px;
}
.campus-img .info h3{
    font-size: 16px;
    font-weight: normal;
    margin: 5px 0 10px;
}
.campus-img .info p{
    height: 50px;
    line-height: 25px;
    overflow: hidden;
    color: #666;
}
.campus li{
    margin-top: 17px;
}
.campus li span{
    float: right;
    color: #666;
}
.campus li a{
    position: relative;
    padding-left: 15px;
    font-size: 16px;
}
.campus li a:before{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: #666;
}
.campus li a:hover:before{
    color: #8F0009;
}

/*视频新闻*/
.video{
    float: right;
    width: 510px;
    height: 395px;
}
.video video{
    width: 100%;
    height: 300px;
    object-fit:fill;
}
.video>p{
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

/*图片集锦*/
.pictures{
    padding: 5px 0;
    background: #EAEAEA;
}
.heading{
    font-size: 24px;
    text-align: center;
    height: 20px;
    line-height: 40px;
    border-bottom: 1px solid #8F0009;
}
.heading a{
    position: relative;
    padding: 0 20px;
    background: #EAEAEA;
}
.heading a:before,
.heading a:after{
    content: '';
    position: absolute;
    top: 50%;
    width: 35px;
    height: 7px;
    margin-top: -3px;
    background: #8F0009;
}
.heading a:before{
    left: -35px;
}
.heading a:after{
    right: -35px;
}
.pictures .bd{
    min-height: 220px;
    margin-top: 40px;
    overflow: hidden;
}
.pictures li{
    float: left;
    width: 280px;
    margin-right: 26px;
}
.pictures li>a{
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
}
.pictures li>a:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 9;
}
.pictures li>a:hover:before{
    display: none;
    animation: zoomIn 1s;
}
.pictures li img{
    display: inline-block;
    width: 100%;
    min-height: 190px;
}
.pictures li img:hover{
    transform: scale(1.1)
}
.pictures li p{
    padding: 10px 10px 0;
    text-align: center;
}

/*树达风采*/
.mien .heading a{
    background: #fff;
}
.mien ul{
    min-height: 150px;
    margin: 40px 0;
    overflow: hidden;
}
.mien ul li{
    float: left;
    width: 400px;
    padding: 0 20px;
    border-right: 1px solid #BBBDC0;
    box-sizing: border-box;
}
.mien ul li:last-child{
    border-right: none;
}
.mien ul li span{
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    background: #B90C17;
}
.mien ul li h3{
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0;
}
.mien ul li p{
    color: #999;
    text-align: justify;
    height: 75px;
    line-height: 25px;
    overflow: hidden;
}

.box{
    padding: 10px 0;
    background: #EAEAEA;
}
.box .container>div{
    float: left;
    width: 384px;
    height: 476px;
    padding: 20px;
    border: 1px solid #D7D7D7;
    background: #fff;
    box-sizing: border-box;
}
.headline{
    height: 31px;
    line-height: 31px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #8F0009;
}
.headline h2{
    position: relative;
    float: left;
    padding-left: 42px;
    font-size: 18px;
    font-weight: normal;
}
.headline h2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    background: url(../images/service.png) no-repeat;
}
.box .info{
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #AFAFAF;
}
.box .info h3{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}
.box .info p{
    color: #999;
    font-size: 12px;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
}
.box li{
    margin-top: 15px;
}
.box li p a{
    position: relative;
    padding-left: 15px;
    color: #666;
}
.box li p a:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #B8B8B8;
}
.box li p a:hover{
    color: #8F0009;
}
.box li p a:hover:before{
    background: #8F0009;
}
/*红枫文学*/
.literature{
    margin-left: 24px;
}
.literature .headline h2:before{
    background-image: url(../images/literature.png);
}
/*活动预告*/
.box .container .activity{
    float: right;
}
.activity .img{
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.activity .img img{
    width: 100%;
    min-height: 160px;
}
.activity .headline h2:before{
    background-image: url(../images/active.png);
}
.activity ul li p{
    margin-right: 60px;
}

/*快速链接*/
.fast-link:after{
    content: '';
    display: block;
    clear: both;
}
.fast-link .headline h2:before{
    background-image: url(../images/link.png);
}
.fast-link>ul{
    margin: 20px -15px;
}
.fast-link>ul>li{
    float: left;
    width: 380px;
    height: 38px;
    line-height: 38px;
    position: relative;
    padding-left: 15px;
    margin: 0 15px;
    border: 1px solid #D5D5D5;
}
.fast-link>ul>li:after{
    content: '';
    position: absolute;
    top: 13px;
    right: 15px;
    width: 16px;
    height: 11px;
    background: url(../images/arrow-down.png) no-repeat;
}
.fast-link .link{
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    max-height: 277px;
    overflow-y: auto;
    padding: 5px 0;
    background: #fff;
    border: 1px solid #DEDEDE;
    border-top: none;
    z-index: 999;
    display: none;
}
.fast-link .link a{
    display: block;
    padding: 0 15px;
}
.fast-link li:hover .link{
    display: block;
}

/*尾部*/
.footer{
    height: 266px;
    color: #fff;
    background: #8F0009 url(../images/footer-bg.jpg) no-repeat center center;
}
.footer ul{
    padding: 30px 0 10px;
    margin-bottom: 50px;
    border-bottom: 1px solid #AF4D53;
    overflow: hidden;
}
.footer li{
    float: left;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}
.footer li h3{
    margin-right: 10px;
    font-size: 18px;
    font-weight: normal;
}
.footer li a{
    color: #fff;
}
.footer li span{
    padding: 0 15px;
}
.footer li:last-child span{
    display: none;
}
.footer .lf{
    margin-right: 50px;
}
.footer p{
    line-height: 25px;
}
.footer .rt{
    padding-top: 20px;
}
.footer .rt a{
    position: relative;
    padding-left: 20px;
}
.footer .qr{
    position: absolute;
    top: -115px;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -38px;
    border: 5px solid #fff;
    border-radius: 3px;
    display: none;
}
.footer .qr:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -21px;
    width: 0;
    height: 0;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #fff;
}
.footer a:hover .qr{
    display: block;
    animation: zoomIn 1s;
}

/*幻灯片*/
.slideBox{
    overflow:hidden;
    position:relative;
    margin-top: -26px;
}
.slideBox .hd{
    position:absolute;
    width: 100%;
    bottom: 20px;
    z-index: 1;
}
.slideBox .hd ul{
    width: 100%;
    text-align: center;
}
.slideBox .hd ul li{
    margin:0 5px;
    width:12px;
    height:12px;
    background:#fff;
    cursor:pointer;
    display: inline-block;
    border-radius: 50%;
}
.slideBox .hd ul li.on{
    width: 12px;
    height: 12px;
    position: relative;
    top: 1px;
    background: #8F0009;
}
.slideBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
}
.slideBox .bd img{
    display:inline-block;
    width: 100%;
}
.slideBox>a{
    position: absolute;
    bottom: 20px;
    left: 50%;
    /* margin-left: -80px; */
    margin-left: -100px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #fff;
    z-index: 99;
}
.slideBox .next{
    /* margin-left: 60px; */
    margin-left: 80px;
    border-left-color: #fff;
    border-right-color: transparent;
}
.slideBox .prev:hover{
    border-right-color: #8F0100;
}
.slideBox .next:hover{
    border-left-color: #8F0100;
}

.banner{
    margin-top: -30px;
}
.banner img{
    width: 100%;
}

/*左侧导航*/
.side{
    float: left;
    width: 250px;
    margin-top: -30px;
    text-align: center;
}
.side p{
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    margin-top: -60px;
    background: #8F0009;
}
.side p span{
    display: none;
}
.side li{
    position: relative;
}
.side li a{
    position: relative;
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    border-bottom: 1px solid #E0E0E0;
}
.side>ul>li span{
    position: absolute;
    top: 19px;
    right: 20px;
    color: #9D9696;
    font: 20px '宋体';
    font-weight: bolder;
    transition: .3s;
}
.side>ul>li span.on{
    transform: rotate(90deg);
}
.side .sub-menu li a{
    color: #666;
    font-size: 16px;
    background: #eee;
}
.side .sub-menu li a:hover,
.side .sub-menu li.on a{
    color: #8F0009;
}
.side .sub-menu{
    display: none;
}
.side ul .active .sub-menu{
    display: block;
}
.side ul .active>a{
    color: #8F0009;
}
.side>ul>li>a:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: #E0E0E0;
}
.side ul .active>a:before{
    background: #8F0009;
}

.side-right{
    float: right;
    width: 310px;
}
.side-right h3{
    height: 40px;
    line-height: 40px;
    margin: 20px 0;
    border-bottom: 2px solid #8F0009;
}
.side-right li{
    position: relative;
    padding-left: 15px;
    line-height: 35px;
}
.side-right li:before{
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #8F0009;
    border-radius: 50%;
}

.column-left{
    margin-right: 340px;
}

/*右侧主体*/
.column{
    margin: -30px 0 50px 280px;
}

.bread{
    height: 59px;
    line-height: 59px;
    position: relative;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #D6D6D6;
}
.bread a{
    color: #666;
}
.bread a:hover{
    color: #8F0009;
}

/*通用：列表页*/
.common-list li{
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
    font-size: 18px;
    border-bottom: 1px solid #EAEAEA;
}
.common-list li:hover{
    background: #F6F6F6;
}
.common-list li span{
    float: right;
    color: #999;
    font-size: 14px;
}
.common-list li p{
    margin-right: 120px;
}
.common-list li a{
    position: relative;
    padding-left: 20px;
    text-decoration: none;
}
.common-list li a:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}
.common-list li a:hover:before{
    background: #8F0009;
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #8F0009 !important;
    background-color: #8F0009 !important;
}

/*详情页*/
.detail{
    margin: 20px 0;
}
.caption{
    position: relative;
    text-align: center;
}
.caption h3{
    font-size: 26px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.caption p span{
    color: #666;
    font-size: 12px;
    margin: 0 5px;
}
.caption .share{
    position: absolute;
    right: 0;
    bottom: -5px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}
.content{
    border-bottom: 3px solid #F0F0F0;
    min-height: 300px;
    font-size: 16px;
    line-height: 1.5em;
}

#vsb_content_4 p{ margin: 25px 0; font-size: 18px !important; }

.btn p{
    line-height: 30px;
    color: #2b2b2b;
    font-size: 16px;
}
.btn p a{
    color: #2b2b2b;
    text-decoration: none;
}
.btn p a:hover{
    color: #8F0009;
}

/*简介页*/
.profile{
    min-height: 300px;
}

/*搜索结果页*/
.search-list{
    margin: 30px 0;
}
.search-list li{
    margin-bottom: 25px;
}
.search-list li h3{
    font-size: 18px;
}
.search-list li p{
    height: 60px;
    line-height: 20px;
    overflow: hidden;
    margin: 10px 0 5px;
    color: #666;
}
.search-list li span{
    color: #999;
}

/*图片列表*/
.img-list{
    margin: 30px -15px 0;
    overflow: hidden;
}
.img-list li{
    float: left;
    width: 275px;
    margin: 0 15px 30px;
}
.img-list li>a{
    position: relative;
    display: block;
    height: 186px;
    overflow: hidden;
}
.img-list li img{
    display: inline-block;
    width: 100%;
    min-height: 186px;
}
.img-list li p{
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
}
.img-list li>a:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 9;
}
.img-list li>a:hover img{
    transform: scale(1.1);
}
.img-list li>a:hover:before{
    display: none;
}

/*学院机构*/
.org-list{
    margin: 30px -10px;
}
.org-list li{
    float: left;
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.org-list li a{
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    background: #F1F1F1;
}
.org-list li a:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8F0009;
    transition: .3s;
}
.org-list li a:hover{
    font-weight: bold;
    background: #E0E0E0;
}
.org-list li a:hover:before{
    width: 100%;
}

/*现任领导*/
.leader{
    height: 258px;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 2px solid #656565;
}
.leader .lf{
    width: 208px;
    height: 258px;
    overflow: hidden;
    background: #F1F1F1;
}
.leader img{
    display: inline-block;
    width: 208px;
}
.leader .info{
    margin-left: 238px;
}
.leader h2{
    font-size: 24px;
    font-weight: normal;
}
.leader h2 span{
    color: #666;
    font-size: 16px;
    margin-left: 20px;
}
.leader .info>p{
    height: 50px;
    line-height: 25px;
    overflow: hidden;
    margin: 10px 0 20px;
}
.leader .resume h3{
    font-size: 18px;
    font-weight: normal;
    padding: 0 0 10px 25px;
    background: url(../images/dot.png) no-repeat left 8px;
    border-bottom: 2px solid #ccc;
}
.leader .resume p{
    height: 75px;
    line-height: 25px;
    overflow: hidden;
    margin-top: 15px;
    color: #666;
}
.leader .resume p a{
    color: #CA171D;
}
.leader .resume p a:hover{
    color: #8F0009;
}

.leader-list{
    overflow: hidden;
}
.leader-list li{
    float: left;
    width: 208px;
    margin: 0 90px 30px 0;
    text-align: center;
}
.leader-list li img{
    display: inline-block;
    width: 208px;
    height: 258px;
}
.leader-list li h3{
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0;
}
.leader-list li p{
    color: #666;
}

.fla1{
    height: 350px;
    overflow: hidden;
    position: relative;
    width: 510px;
}
.fla1 a{color: #fff;}
.fla1 .fla-pic, .fla1 .fla-pic img {
    display: block;
    height: 350px;
    width: 510px;
}
.fla1 .fla-pic img:hover {
    transform: scale(1.1);
}

.fla-msk, .fla-tit {
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}
.fla-msk {
    background: #000;
    height: 50px;
    opacity: .6;
    filter: alpha(opacity=60);
    -moz-opacity: .6;
}
.fla-tit {
    bottom: 0;
    color: #fff;
    z-index: 3;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}
.fla-vd {
    background: url(../images/btn_24video.png) no-repeat;
    cursor: pointer;
    display: block;
    float: left;
    height: 28px;
    margin: 12px 0 0 18px;
    padding-right: 10px;
    width: 28px;
    display: inline;
}