#vue-container .header {
    height: 300px;
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
#vue-container {
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#vue-container .header > div:first-child {
    padding-top: 81px;
    padding-left: 322px;
    font-size: 32px;
    font-weight: 600;
    color:#333333 ;
}
#vue-container .header > div:last-child {
    margin-top: 4px;
    padding-left: 322px;
    font-size: 18px;
    color: #666666;
}

#vue-container .title {
    text-align: center;
    margin-bottom: 28px;
}
#vue-container > .title > div:first-child {
    margin-top: 46px;
    font-size: 26px;
    color: #333;
}
#vue-container > .title > div:last-child {
    margin-top: 2px;
    font-size: 16px;
    color: #666666;
}
#vue-container > .title-info {
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px 0 rgba(5, 34, 68, 0.12);
    padding: 30px 40px;
}
#vue-container > .title-info .right {
    margin-left: 66px;
}
#vue-container > .title-info .text {
    width: 801px;
    font-size: 16px;
    color: #555555;
    padding: 20px 26px;
}
#vue-container > .title-info .right > div:last-child {
    text-align: right;
}
#vue-container .main {
    width: 1332px;
}
#vue-container .main .list-title{
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 24px;
}

#vue-container .main > .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;

}
#vue-container .main > .list > div {
    height: 68px;
    width: 317px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #EAEAEA;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}
#vue-container .main > .list > div:hover {
    border: 1px solid #f60;
}

#vue-container .main > .list > div img {
    transition: transform 0.3s ease-in-out; /* 添加平滑过渡效果 */
}
#vue-container .main > .list > div:hover img {
    transform: translateY(-7px); /* 向上移动10像素 */
}
#vue-container .main > .info {
    color: #555555;
    font-size: 16px;
    margin: 26px 0;
    width: 100%;
}
.red {
    color: red;

}
#vue-container .table-wrap {
    display: flex;
    justify-content: start;
    margin-bottom: 32px;
    width: 100%;
    padding-left: 26px;
}
.blue {
    background-color: #E0F2FF;
    border: 1px solid #B2D4EF;
}
table {
    border-collapse: collapse; /* 合并边框 */
    border-spacing: 0;         /* 消除边框间距 */   
    margin: 0 !important;
    width: fit-content; 
    text-align: left;
}
table td, th {
    border: 1px solid #CFCFCF;
    color: #666666;
    font-size: 12px;
    line-height: 22px;
    padding: 13px 17px;
    font-weight: 400;
    text-align: left;
}
#vue-container  .text1 {
    color: #555;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 75px;
}
.less-than-900 {
    display: none;
}
@media (max-width: 900px) {
    .greater-than-900 {
        display: none !important;
    }
    .less-than-900 {
        display: block;
    }
    .mobile-header {
        width: 100%;
        background-size: cover !important;
    }
    .mobile-header > div:first-child {
        padding-top: 31px;
        padding-left: 55px;
        color: #434343;
        font-size: 16px;
        font-weight: 600;
        line-height: 21px;
    }
    .mobile-header > div:nth-child(2) {
        color: #666;
        padding-left: 55px;
        margin-top: 2px;
        font-weight: 400;
        margin-bottom: 31px;
        font-size: 11px;
    }
    #vue-container .title {
        margin-bottom: 32px;
    }
    #vue-container > .title-info {
        flex-wrap: wrap;
        width: auto;
        margin: 0 16px;
        padding: 0;
        box-sizing: border-box;
    }
    #vue-container > .title-info .text {
        width: 100%;
        padding-left: 32px;
        padding-right: 28px;
        box-sizing: border-box;
    }
    #vue-container > .title-info .right {
        margin-left: 0;
    }
    #vue-container > .title-info .right {
        padding: 24px;
        box-sizing: border-box;
    }
    #vue-container > .title-info .left {
        padding: 14px;
    }
    #vue-container > .title-info .left img {
        width: 100%;
    }
    #vue-container .main {
        width: 100%;
    }
    #vue-container .main .list-title {
        margin-top: 36px;
        margin-bottom: 15px;
        padding-left: 16px;
        box-sizing: border-box;
        font-size: 16px;
    }
    #vue-container .main > .list {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
    #vue-container .main > .list > div {
        width: 166px;
        height: 42px;
    }
    #vue-container .main > .list > div img {
        height: 26px;
    }
    #vue-container .main > .info {
        margin-top: 0;
        margin-bottom: 18px;
        padding: 0 16px;
        box-sizing: border-box;
    }
    #vue-container .table-wrap {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
        margin-bottom: 18px;
    }
    #vue-container .text1 {
        padding: 0 16px;
        margin-bottom: 36px;
    }
}