a {
    text-decoration: none;
}

.banner {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.crumbs {
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 10px;
    color: white;
    text-align: left;
}

.crumbs a {
    color: white;
    text-decoration: none;
}

.banner > img {
    width: 1920px;
}

.content-box {
    width: 100%;
    background: #F0F4FA;
    padding-top: 30px;
    padding-bottom: 30px;
}

.white-box {
    background-color: white;
    padding: 30px 70px;
}

.gray-box {
    background-color: #F0F4FA;
    padding: 0 70px 30px;
}

.flex {
    display: flex;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.flex-vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.white-item {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pA10 {
    padding: 10px;
}

.pA20 {
    padding: 20px;
}

.pA30 {
    padding: 30px;
}

.w50p {
    width: 50%;
}

.title-box {
    padding: 20px;
    position: relative;
    background-color: #fbfcff;
}

.title-box .title-logo{
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 120px;
    color: #c6d8ef;
}

.title-box .title{
    margin: 0;
    font-size: 40px;
    color: #1e5aa9;
    font-weight: bold;
}

.title-box .sub-title {
    margin-top: 20px;
    font-size: 16px;
    color: #333333;
    width: 800px;
    line-height: 30px;
}

.clearance-info-group {
    margin-top: 30px;
}

.clearance-info-group .group-title{
    display: flex;
    height: 50px;
    align-items: center;
}

.clearance-info-group .group-title .icon-box{
    margin-right: 10px;
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    background-color: #e3eaf3;
    color: #1e5aa9;
    border-radius: 50%;
}

.clearance-info-group .group-title .title{
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.clearance-info-list{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.clearance-info-list .clearance-info-item{
    box-sizing: border-box;
    width: 365px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.clearance-info-list .clearance-info-item a{
    box-sizing: border-box;
    display: block;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.clearance-info-list .clearance-info-item .item-title{
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
}

.clearance-info-list .clearance-info-item .item-remark{
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

