html, body {
    background: #F6F6F6;
}
.header-wrapper {
    background-color: #00A1E9;
}
.detail-wrapper {
    width: 100%;
    min-width: 1200px;
    margin-top: 88px;
    overflow: hidden;
}
.detail {
    width: 1200px;
    margin: 52px auto 0;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 0 40px;
    box-sizing: border-box;
}
.detail .header {
    padding: 41px 0 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #E7E7E7;
    text-align: center;
}
.detail .header .title {
    font-size: 28px;
    color: #212121;
}
.detail .header .time {
    font-size: 18px;
    color: #999999;
    margin-top: 24px;
}
.detail .header .time span {
    margin-left: 39px;
}
.detail .content {
    font-size: 16px;
    color: #333333;
    line-height: 36px;
    padding: 35px 0;
    box-sizing: border-box;
}
.detail .content img {
    width: 798px;
    max-width: 100%;
}
.detail .content p {
    margin-bottom: 10px;
}
.other-wrapper,
.back-wrapper {
    width: 100%;
    min-width: 1200px;
}
.other,
.back {
    width: 1200px;
    margin: 60px auto 0;
    font-size: 0;
}
.back {
    margin-top: 39px;
}
.other .left,
.other .right {
    width: 50%;
    display: inline-block;
    font-size: 18px;
    color: #999999;
}
.other .right {
    text-align:  right;
}
.back a {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    background: #00A1E9;
    border-radius: 6px;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}
.recommend {
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}
.recommend .title {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}
.recommend .content {
    margin-top: 30px;
    margin-bottom: 60px;
    overflow: hidden;
}
.recommend .content .item {
    width: 360px;
    margin-right: 60px;
    float: left;
}
.recommend .content .item:last-child {
    margin-right: 0;
}
.recommend .content .item .img-wrapper {
    width: 360px;
    height: 206px;
    border-radius: 8px;
    overflow: hidden;
}
.recommend .content .item img {
    width: 360px;
    height: 206px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.recommend .content .item img:hover {
    -webkit-transform:scale(1.1); 
    -moz-transform:scale(1.1);
    transform:scale(1.1);
}
.recommend .content .item .content-title {
    margin-top: 10px;
    line-height: 30px;
    font-size: 18px;
    color: #333333;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
	transition: color .3s linear;
}
.recommend .content .item .content-description {
    margin-top: 5px;
    line-height: 30px;
    height: 60px;
    font-size: 16px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	transition: color .3s linear;
}
.recommend .content .item:hover .content-title,
.recommend .content .item:hover .content-description {
    color: #29AFFF;
}