/*轮播图*/
.swiper-container {
    width: 100%;
    position: relative;
}

.swiper-container .pic {
    width: 100%;
    height: 330px;
    position: relative;
}

.swiper-container .pic li {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    width: 500px;
    height: 275px;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -250px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.5);
}

.swiper-container .pic li img {
    width: 100%;
    height: 100%;
}

.now {
    z-index: 9;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.next {
    z-index: 6;
    -webkit-transform: translateX(180px);
    -moz-transform: translateX(180px);
    -o-transform: translateX(180px);
    -ms-transform: translateX(180px);
    transform: translateX(180px);
}

.prev {
    z-index: 6;
    -webkit-transform: translateX(-180px);
    -moz-transform: translateX(-180px);
    -o-transform: translateX(-180px);
    -ms-transform: translateX(-180px);
    transform: translateX(-180px);
}

._bg {
    background-color: red !important;
}

.swiper-container .cricle {
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.swiper-container .cricle li {
    float: left;
    width: 14px;
    height: 14px;
    background-color: #cccccc;
    margin-right: 6px;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.swiper-container .btns {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 38px;
    z-index: 9;
}

.swiper-container .btns .leftbtn,
.swiper-container .btns .rightbtn {
    height: 100%;
    width: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}


.swiper-container .btns .leftbtn::after,
.swiper-container .btns .rightbtn::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    
}

.swiper-container .btns .leftbtn::after {
    -webkit-transform: translate(12px, 8px) rotate(-45deg);
    -moz-transform: translate(12px, 8px) rotate(-45deg);
    -o-transform: translate(12px, 8px) rotate(-45deg);
    -ms-transform: translate(12px, 8px) rotate(-45deg);
    transform: translate(12px, 8px) rotate(-45deg);
}

.swiper-container .btns .rightbtn::after {
    -webkit-transform: translate(4px, 8px) rotate(135deg);
    -moz-transform: translate(4px, 8px) rotate(135deg);
    -o-transform: translate(4px, 8px) rotate(135deg);
    -ms-transform: translate(4px, 8px) rotate(135deg);
    transform: translate(4px, 8px) rotate(135deg);
}

.leftBox,
.rightBox {
    height: 300px;
    position: absolute;
    top: 30px;
    z-index: 99;
}

.leftBox {
    width: 182px;
    left: 0;
}

.rightBox {
    width: 222px;
    right: 0;
}


/*文章列表*/
.section-artical-list {
    margin-top: 40px;
    margin-bottom: 20px;
}

/*推荐文章*/

.section-recommend {
    margin-top: 40px;
}


/*友情链接*/
.friendship-links {
    background-color: #f3f6f8;
    font-size: 16px;
    padding: 30px 0 0;
    margin-top: 20px;
}
.friendship-links-label {
    font-size: 24px;
    width: 96px;
    padding: 10px 0;
    border-bottom: 6px solid #1369bf;
}
.friendship-links-container {
    margin-top: 30px;
}
.friendship-links-item {
    margin: 0 30px 30px 0;
}


