.auto_1460 {
    max-width: 1460px;
    margin: auto;
}

@media (max-width: 768px) {
    .auto_1460 {
        margin: 0 4%;
    }
}
@media (max-width: 1460px) {
    .auto_1460 {
        margin: 0 2%;
    }
}

.clearfix {
    zoom: 1;
}


.footer {
    padding-top: 75px;
    /* background: #000; */
    background-image: url("/public/front/img/home/common_bottom.jpg");
    color: #5e5e5e;
    font-size: 14px;
    padding-bottom: 75px;
    height: 294px;
}

.foott .l {
    float: left;
    width: calc(100% - 415px);
    overflow: hidden;
}

.foott .l li{
    color: #fff;
    font-size: 24px;
    padding-bottom: 30px;
    list-style: none;
}

.foott .l .fll{
    float: left;
    overflow: hidden;
}

.foott .l .flr{
    float: left;
    padding-left: 15px;
}

.foott .l dl {
    line-height: 26px;
    color: rgba(255, 255, 255, .7)
}

.foott .l dd {
    font-size: 14px;
}

.foott .l dl dt {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    font-family: "SHLight";
}

.foott .l dl a{
    font-family: "SHLight";
    color: rgba(255, 255, 255, .7);
}
.foott .l dl a:hover{
    color: #fff;
}
    

.foott .l dl dt .iconfont {
    display: none;
}

.foott .r {
    /* width: 300px; */
    float: right;
    color: #fff;
}

.foott .r .b {
    font-size: 20px;
    color: #fff;
    line-height: 36px;
    margin-top: 10px;
}

.foott .r .icons {
    /* border-top: 1px solid #1a1a1a; */
    color: #5e5e5e;
}

.foott .r .icons .iconfont {
    margin-right: 25px;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
}
.foott .r .icons .iconfont:hover{
    color: #fff;
}

.footer .footb {
    padding: 30px 0;
    margin-top: 75px;
    border-top: 1px solid #1a1a1a;
}

.footer .footb .l {
    float: left;
}

.footer .footb .l a {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid #1a1a1a;
    color: rgba(255, 255, 255, .5);
}
.footer .footb .l a:hover{
    color: #fff;
}


.footer .footb .l a:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.footer .footb .r {
    float: right;
    color: rgba(255, 255, 255, .5);
}

.footer .copyright {
    float: right;
    color: rgba(255, 255, 255, .7)
}

.footer .copyright .c-text {
    margin-right: 3px;
}
.footer img {
    vertical-align: middle;
    max-width: 100%;
    border: none;
}

/* 默认在移动设备上显示带有mobile类的元素 */
.mobile {
  display: flex;
  vertical-align: middle;
}

/* 当屏幕宽度大于768px（通常认为是平板及以上设备）时隐藏 */
@media (min-width: 768px) {
  .mobile {
    display: none;
  }
}

/* 可以根据需要调整断点，比如针对更大的屏幕 */
@media (min-width: 1024px) {
  .mobile {
    display: none;
  }

}

@media (max-width: 1200px) {
    .foott .l {
        width: 100%;
        float: none;
        margin-bottom: 40px;
    }

    .nav-item .mx-4 {
        margin-left: 0rem;
        margin-right: 0.4rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 30px;
    }

}


/* 表格容器，用于在小屏幕上实现横向滚动 */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 表格样式 */
.component-table {
    width: 100%;
    min-width: 600px; /* 确保表格在小屏幕上有足够宽度可滚动 */
    border-collapse: collapse;
}

.component-table th,
.component-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.component-table th {
    background-color: #868686;
    color: white;
    font-weight: bold;
    position: sticky;
    top: 0;
}

/* 行悬停效果 */
.component-table tbody tr:hover {
    background-color: #f1f9ff;
    transition: background-color 0.3s ease;
}

/* 交替行颜色，提高可读性 */
.component-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* 响应式调整 */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .component-table th,
    .component-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}