* {
    margin: 0;
    padding: 0;
}


/*content*/

.content {
    zoom: 1;
    overflow: hidden;
}


/*首面修改-企业动态*/


/* ui-banner */

.ui-banner {
    display: block;
    position: relative;
    width: 1250px;
}

.ui-banner.ui-banner-invalid {
    display: none;
}

.ui-banner,
.ui-banner .ui-banner-slides,
.ui-banner .ui-banner-slogans,
.ui-banner .ui-banner-arrow {
    height: 298px;
}

.ui-banner .ui-banner-slides,
.ui-banner .ui-banner-slogans,
.ui-banner .ui-banner-arrow {
    position: absolute;
    top: 0;
}

.ui-banner ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.ui-banner .ui-banner-slides {
    width: 445px;
    height: 298px;
    left: 1px;
}

.ui-banner .ui-banner-slides li {
    display: none;
    position: absolute;
    top: 5px;
    +top: 10px;
}

.ui-banner .ui-banner-slides li img {
    width: 445px;
    height: 298px;
    border: none;
}

.ui-banner .ui-banner-slides li.ui-banner-slides-current,
.ui-banner .ui-banner-slides li.ui-banner-slides-prev,
.ui-banner .ui-banner-slides li.ui-banner-slides-next {
    display: block;
}

.ui-banner .ui-banner-slides li.ui-banner-slides-current {
    left: 0;
}

.ui-banner .ui-banner-slides li.ui-banner-slides-prev {
    left: -654px;
}

.ui-banner .ui-banner-slides li.ui-banner-slides-next {
    left: 654px;
}

.ui-banner .ui-banner-slogans {
    height: 298px;
    overflow: hidden;
    width: 698px;
    right: 0;
}

.ui-bnnerimg {
    width: 103px;
    height: 83px;
}

.ui-bnnerp {
    width: 550px;
    height: 97%;
    padding-left: 20px;
}

.ui-bnnerp h3 {
    font-size: 14px;
    color: #666;
}

.ui-bnnerp p {
    color: #666;
}

.ui-line {
    zoom: 1;
    overflow: hidden;
}

.ui-line-hover {
    background: url("../img/stuj.png") no-repeat left center;
}

.ullinehover {
    border-bottom: 1px solid #ececec;
    height: 100px;
    margin: 0 0 3px 25px;
    +margin: 0 0 1px 25px;
    padding: 6px 0;
}

.ui-bnnerp-hover {
    background-color: #66acee;
    color: #fff;
}


/*.ullinehover:hover .ui-bnnerp h3,.ullinehover:hover .ui-bnnerp p{
	color: #fff;
}*/

.uibannerslog ul li {
    border: 1px solid red;
}

.ui-bnnerp-hover h3,
.ui-bnnerp-hover p {
    color: #fff;
}

.ui-banner .ui-banner-arrow {
    display: block;
    width: 23px;
    outline: none;
}

.ui-banner .ui-banner-arrow.ui-banner-arrow-prev {
    background: transparent url("../img/jleft.jpg") no-repeat scroll 0 0;
    height: 23px;
    right: -43px;
    top: 17px;
    width: 23px;
}

.ui-banner .ui-banner-arrow.ui-banner-arrow-next {
    background: transparent url("../img/jright.jpg") no-repeat;
    height: 23px;
    right: -43px;
    top: 49px;
    width: 23px;
}

.ui-banner .ui-banner-arrow.ui-banner-arrow-next img {
    left: -15px;
}

.ui-banner .ui-banner-overlay {
    bottom: 0;
    height: 10px;
    position: absolute;
    right: 0;
    width: 173px;
}

#app {
    width: 1300px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.box {
    width: 280px;
    overflow: hidden;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 0 15px 25px 15px;
}

.box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    text-decoration: none;
}

.box a:hover {
    color: #6d57ee;
}

.imgBox {
    width: 280px;
    height: 186.67px;
    overflow: hidden;
}

.imgBox img {
    width: 100%;
    height: 100%;
    transition: all 0.6s linear;
}

.source {
    border: 1px solid #535353;
    padding: 6px 20px;
    border-radius: 25px;
    margin: 20px;
}

.title {
    margin-bottom: 20px;
    font-size: 20px;
}

.detail {
    font-size: 14px;
    line-height: 160%;
    text-align: justify;
    width: 100%;
}


/*鼠标hover效果*/

.box>a::after {
    content: '';
    width: 280px;
    position: absolute;
    background: #6d57ee;
    bottom: 0;
    height: 0px;
    transition: height 0.3s linear;
    /*利用伪类高度，实现动画效果*/
}

.box>a:hover::after {
    height: 10px;
}

.box:hover img {
    transform: scale(1.15);
}

.box:hover .source {
    background: #6d57ee;
    border-color: #6d57ee;
    color: #ffffff;
}