/* flex布局封装 */
.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

/* 主轴方向为垂直方向，从上往下 */
.flex-column{
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-direction: column;
}

/* space-between：两端对齐，项目之间的间隔都相等。 */
.flex-space-between{
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* center：中间对齐 */
.flex-center{
    -webkit-justify-content: center;
    justify-content: center;
}

/* ver-center: 垂直居中 */
.flex-ver-center{
    -webkit-align-items: center;
    align-items: center;
}

/* space-around: 平均分配 */
.flex-space-around{
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-wrap{
    flex-wrap:wrap;
}
.flex-start{
    align-items:flex-start!important;
}
.flex-end{
    align-items:flex-end!important;
}
.flex-right{
    justify-content: flex-end;
}
.flex1{
    flex:1;
}
.flex2{
    flex:2;
}
.flex3{
    flex:3;
}
.flex4{
    flex:4;
}
.flex5{
    flex:5;
}
.flex12{
    flex:12;
}
.imagescroll_h_leftArrow{
    display: inline-block;
    vertical-align: middle;
    width: auto;
    flex: 0 0 0%;
    align-self: center;
    height: auto;
    line-height: 0;
    display: inline-block;
    width: 0px;
    height: 0px;
    vertical-align: top;
    overflow: hidden;
    border-style: solid;
    border-width: 4px 0px 4px 6px;
    border-color: rgba(255, 255, 255, 0) rgb(240, 244, 255) rgba(255, 255, 255, 0) rgb(160, 160, 160);
    transform: rotateY(180deg);
}
.imagescroll_h_rightArrow{
    display: inline-block;
    vertical-align: middle;
    width: auto;
    flex: 0 0 0%;
    align-self: center;
    height: auto;
    line-height: 0;
    display: inline-block;
    width: 0px;
    height: 0px;
    vertical-align: top;
    overflow: hidden;
    border-style: solid;
    border-width: 4px 0px 4px 6px;
    border-color: rgba(255, 255, 255, 0) rgb(240, 244, 255) rgba(255, 255, 255, 0) rgb(160, 160, 160);
}
.imagescroll_h_content{
    white-space: nowrap;
    height: 420px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom:15px;
    overflow-y: hidden;
}
.imagescroll_h_content img{
    display: inline-block;
    margin-right: 10px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    object-fit: contain;
}
.imagescroll_h_content img:last-child{
    margin-right: 0px;
}

/* 定义滚动条的宽度 */
.imagescroll_h_content::-webkit-scrollbar{
    width: 6px;
    height: 6px;
}
/* 滚动条轨道 */
.imagescroll_h_content::-webkit-scrollbar-track{
    background-color: transparent;
}
/* 滚动条滑块/手柄 */
.imagescroll_h_content::-webkit-scrollbar-thumb {
    background: #b3b3b3; 
    border-radius: 10px; /* 圆角 */
}

/* 滚动条滑块/手柄在悬停时 */
.imagescroll_h_content::-webkit-scrollbar-thumb:hover {
    background: #d8d8d8; 
}

.imagescroll_h_content>div{
    position: relative;
    display: inline-block;
    margin-right: 10px;
    height: 100%;
    border-radius: 8px;
}
.imagescroll_h_content>div:last-child{
    margin-right: 0px;
}
.imagescroll_h_content>div img{
    height: 80%;
    margin-right:0px;
}
.imagescroll_h_box_info{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    white-space: pre-wrap;
    height: 18%;
    padding: 15px;
    box-sizing: border-box;
    background-color: #f0f0f0;
    border-radius: 8px;
    font-size: 12px;
    line-height: 21px;
}
.imagescroll_h_box_info>div{
    overflow-y: auto;
    position: absolute;
    inset: 12px;
    box-sizing: border-box;
}
/* 定义滚动条的整体样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar {
    width: 4px; /* 设置滚动条的宽度 */
    height: 20px; /* 设置滚动条的高度 */
}

/* 定义滚动轨迹的样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar-track {
    background: transparent; /* 设置滚动轨迹的背景颜色 */
}

/* 定义滑块的样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1); /* 设置滑块的背景颜色 */
    border-radius: 10px;
    overflow: hidden;
}

/* 当鼠标悬停在滚动条上时的滑块样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.2); /* 设置鼠标悬停时滑块的背景颜色 */
    border-radius: 10px;
    overflow: hidden;
}

/* 定义滚动条两端的按钮样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar-button {
    display: none; /* 可以选择隐藏滚动条两端的按钮 */
}

/* 定义滚动条角落的样式 */
.imagescroll_h_box_info>div::-webkit-scrollbar-corner {
    background: transparent; /* 设置滚动条角落的背景颜色 */
}

@media screen and (max-width: 1280px) {
    .imagescroll_h_content_desc{
        min-height:630px!important;
    }
    .imagescroll_h_box_info{
        font-size: 12px!important;
        line-height: 50px!important;
        height: 110px !important;
    }
    .imagescroll_h_box_info>div{
        inset: 25px!important;
    }
}