.panel{
    background: #fff;
    border-radius: 16px;
    padding: 20px;
} 

.panel-head{
    display: flex;
    justify-content: space-between;
    border-bottom:solid 1px rgba(34, 34, 34, 0.06);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.panel-head .seach-box{
    display: flex;
    border:solid 1px #DEDEDE;
    border-radius: 4px;
    align-items: center;
}

.panel-head .score-info{
    display: flex;
}

.panel-title{
    font-size: 26px;
    font-weight: 700;
    color: #222222;
}

.user_score_info{
    display: flex;
    align-items: center;
    justify-items: center;
    font-size: 16px;
    color: #222222;
    font-weight: 500;
    margin-left: 4px;
    margin-right: 4px;
}

.jiange{
    color: #E3E3E3;
}

.user_score_info_batch{
    color: #FF7016;
}
.filter .lists{
    display: flex;
    margin-bottom: 20px;
}

.filter .lists .label{
    flex-shrink: 0;
    color:rgba(102, 102, 102, 1);
    text-align: center;
    font-size:16px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    width:120px;
    line-height: 1.6;
    padding: 0px;
}

.filter .lists .label span{
    color:#999;
    font-size:12px;
    display: block;
    width:100%;
}

.filter .childs{
    display: flex;
    flex-wrap: wrap;
    /* align-items: flex-end; */
    gap:20px 30px;
    align-items: flex-start;
}

.filter .childs .item{
    color:#222;
    font-size:16px;
    /* line-height: 1.6; */
    cursor: pointer;
    padding: 0px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.filter .childs .item:hover {
    color: #FF7016;
}

.filter .childs .item.active {
    color: #FF7016;
    font-weight: 500;
}

.filter .childs .item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF7016;
    border-radius: 1px;
}

.filter .childs .item.dropdown {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    gap: 4px;
}

.filter .childs .item .arrow::after {
    content: "\eb06";
    font-family: iconfont;
}
.collapsed .lists{
    display: none;
}
/* .filter .childs .item.dropdown:hover .arrow {
    color: #FF7016;
} */

.collapse-btn {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.collapse-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.collapse-link:hover {
    color: #FF7016;
    text-decoration: none;
}

/* 分数区间筛选区域 */
.score-filter-section {
    /*background: #fff;*/
    border-radius: 16px;
    /*padding: 20px;*/
    margin: 20px 0;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.score-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.score-tabs {
    display: flex;
    gap: 10px;
}

.score-tabs .tab-item {
    padding: 8px 16px;
    background: #FFFFFF;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.score-tabs .tab-item.active {
    background: #FF7016;
    color: #fff;
}

.score-tabs .tab-item:hover {
    background: #E65A00;
    color: #fff;
}

.score-range-filter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.score-slider-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.score-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.score-display {
    display: none; /* 隐藏原来的分数显示 */
}

.min-score, .max-score {
    background: #FF7016;
    color: #fff;
    /*padding: 4px 8px;*/
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    position: absolute;
    top: -26px;
    left: 0;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    user-select: none;
    transition: none;
    pointer-events: auto;
    white-space: nowrap;
}

/* 确保数字框相对于滑块轨道定位 */
.slider-track {
    position: relative;
}

.score-separator {
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

.score-slider {
    position: relative;
    width: 200px;
    height: 20px;
    display: flex;
    align-items: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
}

.slider-range {
    position: absolute;
    height: 100%;
    background: #FF7016;
    border-radius: 3px;
    left: 0;
    right: 0;
}

.slider-thumb {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #FF7016;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.slider-thumb:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-thumb-min {
    left: 0;
    transform: translateX(-50%) translateY(-50%);
}

.slider-thumb-max {
    left: 100%;
    transform: translateX(-50%) translateY(-50%);
}

/* 数字框作为拖动点 */
.score-display {
    position: relative;
}

.min-score, .max-score {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.min-score:hover, .max-score:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 112, 22, 0.3);
}

/* 专业选择下拉样式 */
.filter .item.dropdown {
    position: relative;
}

.major-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 8px;
}

.major-dropdowns {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 8px;
}

.major-dropdown.show {
    display: block;
}
.major-dropdowns.show {
    display: block;
}

.dropdown-content {
    background: #fff;
    border-radius: 8px;
    width: 600px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.dropdown-contents {
    background: #fff;
    border-radius: 8px;
    width: 600px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-title .active-category {
    color: #FF7016;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 8px;
}

.dropdown-title .active-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: #FF7016;
    border-radius: 2px;
}

.dropdown-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.all-option {
    color: #FF7016;
    font-size: 14px;
    position: relative;
    padding-left: 8px;
    cursor: pointer;
}

.all-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: #FF7016;
    border-radius: 2px;
}

.clear-icon {
    width: 18px;
    height: 18px;
    background: #FF7016;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.dropdown-body {
    display: flex;
    flex: 1;
    min-height: 250px;
}
.dropdown-bodys {
    display: flex;
    flex: 1;
    min-height: 250px;
}
.category-list {
    width: 180px;
    border-right: 1px solid #f0f0f0;
    padding: 12px 0;
    overflow-y: auto;
}

.category-item {
    padding: 10px 16px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    position: relative;
    transition: all 0.2s ease;
}

.category-item:hover {
    background: #f8f9fa;
}

.category-item.active {
    color: #FF7016;
    background: #fff3e6;
}

.category-item.active .category-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF7016;
}

.major-list {
    flex: 1;
    padding: 12px 16px;
    overflow-y: auto;
}
.major-lists {
    flex: 1;
    padding: 12px 16px;
    overflow-y: auto;
}
.major-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
}
.major-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
}
.major-item:hover {
    background: #f8f9fa;
    margin: 0 -16px;
    padding: 10px 16px;
}
.major-items:hover {
    background: #f8f9fa;
    margin: 0 -16px;
    padding: 10px 16px;
}
.major-item:last-child {
    border-bottom: none;
}
.major-items:last-child {
    border-bottom: none;
}
.major-name {
    color: #333;
    font-size: 14px;
    flex: 1;
}
.major-names {
    color: #333;
    font-size: 14px;
    flex: 1;
}
.checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
    transition: all 0.2s ease;
}
.checkboxs {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
    transition: all 0.2s ease;
}
.major-item.selected .checkbox {
    background: #FF7016;
    border-color: #FF7016;
}
.major-items.selected .checkbox {
    background: #FF7016;
    border-color: #FF7016;
}
.major-item.selected .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
.major-items.selected .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
.dropdown-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.selected-count {
    color: #666;
    font-size: 14px;
}

.selected-count .count {
    color: #FF7016;
    font-weight: 500;
}

.dropdown-buttons {
    display: flex;
    gap: 12px;
}

.btn-reset {
    /*background: none;*/
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.all-major{
    background: #FF7016;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-reset:hover {
    background: #f0f0f0;
    color: #333;
}

.btn-confirm {
    background: #FF7016;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-confirm:hover {
    background: #e65a00;
}
.plan_list_info{
    border-radius: 16px;
    background: #FFFFFF !important;
}
.table-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-label {
    font-size: 14px;
    color: #666;
}

.probability-tag {
    padding: 4px 12px;
    border-radius: 16px 0px 16px 0px;
    font-size: 13px;
    font-weight: 500;
}

.probability-high {
    background-color: #e3f2fd;
    color: #1976d2;
}

.probability-medium {
    /*background-color: #fff3e0;*/
    color: #ffffff;
    background: rgba(255, 112, 22, 1);
}
.probability-medium-blue {
    /*background-color: #fff3e0;*/
    color: #ffffff;
    background: rgba(60, 149, 250, 1);
}
.probability-medium-green {
    /*background-color: #fff3e0;*/
    color: #ffffff;
    background: rgba(67, 207, 124, 1);
}

.school-tag {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #388e3c;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

td {
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.school-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
    margin-left: 20px;
}

.school-name {
    font-weight: 600;
    color: #212529;
    font-size: 15px;
}

.school-details {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

.enrollment-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.enrollment-label {
    color: #6c757d;
    font-size: 14px;
    color: #222222;
    span{
        color: #FF7016;
        font-size: 24px;
    }
}
.request_info{
    color: #999999;
    font-size: 12px;
}

.enrollment-number {
    font-weight: 600;
    color: #212529;
}

.highlight-number {
    color: #e53935;
    font-weight: 600;
}

.year-data {
    text-align: center;
}

.rank-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rank-item {
    font-size: 13px;
}

.rank-province {
    color: #212529;
}

.rank-school {
    color: #6c757d;
}
.right_border{
    border-right: 1px solid #F2F2F2;
}
.search {

    border:solid 1px #FF7016;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.new_search_input{
    position: absolute;
    top: 60px;
    left: 67%;
}
.search input {
    width:320px;
    height:36px;
    background-color: transparent;
    outline:none;
    border:none;
    font-size:16px;
    margin-left:10px;
}
.status-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 6px;
}

.status-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
}
.new_border{
    border-right: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    line-height: 40px;
}
.status-applied {
    /*background-color: #e3f2fd;*/
    color: #222222;
    font-size: 13px;
}

.status-available {
    color: #FF7016;
    border: 1px solid #FF7016;
    width: 80%;
    margin-left: 10%;
    cursor:pointer;
}

tr:hover {
    background-color: #f8f9fa;
}

/* 弹窗遮罩层 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* 弹窗显示状态 */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.new-plan_list_info{
    height: 80%;
    padding: 20px;
    background: #FFFFFF !important;
    border-radius: 16px;
    width: 50%;
}
.modal-overlay .new-plan_list_info .plan_list_info{
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
    border-radius: 0px !important;
}

.ke_header{
    position: absolute;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF !important;
    width: 47%;
}
.ke_header_child{
    display: flex;
}
.ke_school_info{
    /*width: 255px;*/
    height: 28px;
    opacity: 1;
    /** 文本1 */
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28px;
    color: rgba(34, 34, 34, 1);
}
.ke_odds{
    width: 99px;
    height: 28px;
    opacity: 1;
    border-radius: 8px;
    border: 1px solid rgba(224, 224, 224, 1);
    display: grid;
    justify-content: center;
    align-content: center;
    margin-left: 20px;
}
.ke_school_rank{
    width: 99px;
    height: 28px;
    opacity: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 112, 22, 1);
    display: grid;
    justify-content: center;
    align-content: center;
    margin-left: 20px;
}
.close-modal-btn-ke {
    background: none;
    border: 1px solid rgba(153, 153, 153, 1);
    /*font-size: 24px;*/
    color: #6c757d;
    cursor: pointer;
    /*padding: 4px;*/
    border-radius: 28px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.preview-volunteer{
    position: fixed;
    right: 0;
    top: 50%;
    width: 45px;
    opacity: 1;
    border-radius: 8px;
    background: rgba(255, 112, 22, 1);
    color: rgba(255, 255, 255, 1);
    display: grid;
    text-align: center;
    padding: 10px;
}

/* 弹窗遮罩层 */
.now-ke {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* 弹窗显示状态 */
.now-ke.active {
    opacity: 1;
    visibility: visible;
}
.now-ke-content{
    background: #FFFFFF;
    border-radius: 16px;
    position: absolute;
    top: 10%;
    height: 80%;
}
.now-ke-content-info{
    height: 100%;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 140, 26, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}
.now-ke-list-total{
    overflow: auto;
    scrollbar-width: none;
    height: 90%
}
.now-ke-header{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 30.8px;
    color: rgba(34, 34, 34, 1);
    margin-bottom: 20px;
}
.now-ke-list{
    width: 500px;
    opacity: 1;
    border-radius: 8px;
    border: 1px solid rgba(224, 224, 224, 1);
    padding: 16px;
    margin-bottom: 10px;
}
.now-ke-list-school{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 25.2px;
    color: rgba(34, 34, 34, 1);
    display: flex;
    justify-content: space-between;
}
.now-ke-list-info{
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 25.2px;
    color: rgba(34, 34, 34, 1);
    display: flex;
    justify-content: space-between;
    border-left: 2px solid rgba(255, 112, 22, 1);
    margin-bottom: 5px;
}
.now-ke-content-number{
    width: 20px;
    position: relative;
    left: -16px;
    top: -17px;
    border-radius: 8px 0px 8px 0px;
    background: rgba(255, 112, 22, 1);
    text-align: center;
    color: #ffffff;
    margin-bottom: -10px;
}
.now-ke-list-info-lv{
    border-radius: 9.51px 0px 9.51px 0px;
    background: rgba(255, 244, 237, 1);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 18.2px;
    color: rgba(255, 112, 22, 1);
    padding: 4px;
}
.now-ke-list-marks{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 19px;
    color: rgba(153, 153, 153, 1);
    margin-left: 4px;
    width: 60%;
}
.now-ke-list-major-close{
    cursor: pointer;
}
.now-ke-list-school-close{
    cursor: pointer;
}
.now-ke-button{
    display: flex;
    width: 80%;
    margin-left: 10%;
    font-size: 18px;
    font-weight: 600;
}
.now-ke-button-left{
    cursor: pointer;
    display: grid;
    justify-content: center;
    align-content: center;
    border-radius: 36px;
    background: rgba(255, 112, 22, 0.09);
    width: 45%;
    height: 40px;
    color: rgba(255, 112, 22, 1);
}
.now-ke-button-right{
    cursor: pointer;
    display: grid;
    justify-content: center;
    align-content: center;
    border-radius: 36px;
    background: rgba(255, 112, 22, 1);
    width: 45%;
    height: 40px;
    margin-left: 10%;
    color: rgba(255, 255, 255, 1);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        overflow-x: auto;
    }

    table {
        min-width: 900px;
    }

    .table-header {
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header-left {
        gap: 16px;
    }

    th, td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .school-name {
        font-size: 14px;
    }

    .school-details {
        font-size: 12px;
    }
}
.open-vip{
    position: relative;

}
.open-vip::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../images/common/open_vip_1.png');
    background-size: cover;
    z-index: 1000; /* 确保这个值比其他元素的 z-index 大 */
}
 /* .filter { background:#fff; border-radius:8px; box-shadow:0 4px 16px rgba(0,0,0,.04); padding:12px 16px; margin-bottom:12px; }
.row-line { 
    display:flex; 
    flex-wrap:wrap; 
    padding:8px 0; 
    border-bottom:1px dashed #f0f0f0;
 }

.row-line:last-child { border-bottom:none; }

.label { 
    width:72px; 
    color:#999; 
    font-size:12px; 
    line-height:28px;
    text-align: center;
 }

.opts { display:flex; flex-wrap:wrap; gap:10px 12px; align-items: flex-start;}
.opt { color:#666; background:#f6f7fb; border-radius:14px; padding:4px 10px; cursor:pointer; }
.opt.active { color:#ff6b35; background:rgba(255,107,53,.1); }
.toolbar { display:flex; gap:12px; margin:10px 0; }
.toolbar .tab { padding:6px 12px; border:1px solid #eee; background:#fff; border-radius:16px; color:#666; }
.toolbar .tab.active { border-color:#ff6b35; color:#ff6b35; } */

.table-card { background:#fff; border-radius:8px; box-shadow:0 4px 16px rgba(0,0,0,.04); }
table { width:100%; border-collapse:collapse; }
th, td { padding:0px 0px; border-bottom:1px solid #f0f0f0; text-align:center; font-size:12px; }
th {height: 60px}
/*thead { background:#fafafa; color:#888; }*/
thead { color:#888; }
.tag { display:inline-block; padding:2px 6px; border-radius:10px; font-size:12px; }
.tag-blue { background:#eef5ff; color:#4a90e2; }
.tag-green { background:#e9faf1; color:#3fbb77; }
.tag-orange { background:#fff3e6; color:#ff8a00; }
.btn-mini { border:1px solid #ff6b35; color:#ff6b35; background:#fff; padding:2px 8px; border-radius:12px; font-size:12px; }
    