.form-control:focus,
.form-select:focus{
    background:none !important;
}

.btn-default {
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 40px; /* 设置按钮高度 */
}

.btn-default img {
    max-width: 100%; /* 确保图片不超出按钮的宽度 */
}


/**bcs*/
.breadcrumb {
    display:flex;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li:not(:last-child):after {
    content: "/";
    margin: 0 5px; /* 调整斜杠的间距 */
}

/*pagination*/

/* 分页 */
.page {
    margin: .5rem auto 0 auto;
    text-align: center;
}

.page ul {
    padding: 0 !important;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 12px 24px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #EB5414;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #EB5414;
    border-color: #EB5414
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}


/**table**/
table {
    border-collapse: collapse;
    width: 100%;
}
table, th, td {
    padding:5px;
    border: 1px solid #333;
}

/**home**/
.section_news .content >div:first-child img{
    height: 350px!important;
}

/*视频控制*/
/* 为videoBox添加相对定位 */
.videoBox {
    position: relative;
    display: inline-block; /* 根据实际布局需要调整 */
}

.video-close-btn {
    position: absolute;
    top: 15px;  /* 根据实际视频边框调整 */
    right: 15px;
    z-index: 100;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-align: center; /* 水平居中 */
    line-height: 26px; /* 手动计算：按钮高度28px - 字体20px ≈ 上下各4px间隙 */
    padding-bottom: 2px; /* 微调垂直位置 */
}

.video-close-btn:hover {
    transform: scale(1.1);
    background: #ff0000;
}