/*轮播图部分*/
#carousel{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;

}
.carousel-left,.carousel-right{
    position: absolute;
    top: calc(50% - 0px);
    display: inline-block;
    transform: translateY(-50%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 60px;
    border-radius: 50%;
    transition: all .5s;
}
.carousel-left{
    left: 110px;
}
.carousel-right{
    right: 110px;
}
.carousel-left:hover,.carousel-right:hover{
    color: black;
}
.carousel-dots{
    position: absolute;
    bottom: 0px;
    text-align: center;
    left:50%;
    transform: translateX(-50%);
    display: flex;
}
.carousel_dot_pointer{
    padding: 20px 0px;
    cursor: pointer;
}
.carousel-dots button{

    display: inline-block;
    margin: 0 5px;
    color:#000;
    border: none;
    outline: none;
    transition: all .2s;
    cursor: pointer;
    font-size: 7px;

    width: 36px;
    height: 3px;
    background-color: #ffffff;
    box-shadow: 0px 0px 8px 0px
    rgba(14, 92, 223, 0.15);
    border-radius: 2px;
    opacity: 0.5;
}
.carousel-dots button:hover,.carousel-dots button.active{
    opacity: 1;
}
.carousel-item{
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    height: 300px;
}
.carousel-item img{
    width:  100%;
    box-sizing: border-box;
}
.carousel-item div{
    width:  100%;
    height: 100%;
    box-sizing: border-box;
}
.bor_blue{
    border: dashed 1px #2f67e9;
}
.bor_orange{
    border: dashed 1px #fb6820;
}
.none_bor{
    border: none;
}


/*///////图文部分////////*/
.ti_pre_back_div{
    width: 100%;
    height: 264px;
    box-sizing: border-box;
}
.ti_pre_back_div_bor{
    width: 100%;
    height: 264px;
    border: dashed 1px #336be5;
    box-sizing: border-box;
}
.ti_one_img_div{
    width: 743px;
    height: 120px;
    border-radius: 6px;
    border: dashed 1px #2f67e9;
}
.ti_two_img_div{
    width: 362px;
    height: 120px;
    border-radius: 6px;
    border: dashed 1px #2f67e9;
    margin-right: 8px;
    margin-left: 8px;
}
.ti_img_line{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 50px;
}
.ti_pre_div{
    position: relative;
    font-size: 0px;
}
.ti_two_img{
    max-width: 362px;
    margin-right: 8px;
    margin-left: 8px;
}
.ti_one_img{
    max-width: 743px;
}
.ti_pre_back_img{
    width: 100%;
    box-sizing: border-box;
}
.ti_pre_back_img_bor{
    width: 100%;
    box-sizing: border-box;
    border: dashed 1px #fb6820;
}