/* 轮播图样式 */
section {
    width: 1300px;
     /*background-color: rgb(191, 127, 255);*/
    /*padding-left: 50px;*/
    /*padding-right: 50px;*/
    /*box-sizing: border-box;*/
    margin: 0 auto;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
     z-index:1;
}
.loopbox {
    width: 1300px;
    height: 400px;
    overflow: hidden;
    position: relative;
}


.box {
    width: 6500px;
    height: 400px;
}

.box-item {
    width: 1300px;
    height: 400px;
    float: left;


}
.box img {
    width: 1300px;
    height:400px;

}
/* 左右箭头 */
.arrow {
    width: 60px;
    line-height: 30px;
    background: #5e5c5c;
    opacity: 0.5;
    text-align: center;
    color: #f1f1f1;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    border-radius: 15px;
    display: none;
}
.arrow-left {
    left: 10px;
}
.arrow-right {
    right: 10px;
}
.arrow:hover {
    color: #f7af05;
    opacity: 0.8;
}
