.ship-page-body {
    background: #f6f8fa;
}

/* 航线列表、筛选条件 */
.search-wrapper {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #fff;
}

.search-bar {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 6px;
    background: #f6f8fa;
}

.search-item {
    display: flex;
    align-items: start;
    padding: 12px 6px;
    border-bottom: 1px dotted #d8d8d8;
}

.search-item .item-hd {
    color: #666;
    flex: 0 0 85px;
    height: 26px;
    line-height: 26px;
    margin: 5px 0;
    text-align: right;
    font-size: 14px;
}

.search-item .item-bd {
    flex: 1 1 auto;
    padding: 0 10px;
    font-size: 0;
}
.search-item .item-bd .item {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    margin: 5px;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.search-item .item-bd .item.on {
    color: #fff;
    background: #00468c;
}
.search-item .item-bd .item .icon-close {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin: -2px 0 0 4px;
    position: relative;
    transition: all 0.3s;
}
.search-item .item-bd .icon-close::before,
.search-item .item-bd .icon-close::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 10px;
    position: absolute;
    top: 1px;
    left: 50%;
    background: #fff;
}
.search-item .item-bd .icon-close::before {
    transform: rotate(45deg);
}
.search-item .item-bd .icon-close::after {
    transform: rotate(-45deg);
}
.search-item .item-bd .item:hover .icon-close {
    transform: rotate(90deg);
}
.search-item .item-bd .clear {
    color: #00468c;
    margin-left: 10px;
    font-size: 12px;
}

/* 条件排序 */
.search-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #fff;
}
.search-sort-group {
    display: flex;
    align-items: center;
}
.search-sort-group .item {
    color: #333;
    height: 20px;
    line-height: 20px;
    padding: 0 25px;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
    font-size: 14px;
}
.search-sort-group .item.on {
    color: #00468c;
}
.search-sort-page {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.search-sort-page .current {
    padding: 0 10px;
}

.search-sort-page .prev,
.search-sort-page .next {
    display: inline-block;
    width: 4px;
    height: 4px;
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.search-sort-page .prev {
    border-bottom: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.search-sort-page .next {
    border-top: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
}

.search-sort-page .prev.on,
.search-sort-page .next.on {
    border-color: #00468c;
    border-width: 2px;
}

.search-sort-page .prev.on:hover,
.search-sort-page .next.on:hover {
    transform: rotate(45deg) scale(1.4);
}

/* 主体列表 */
.st-main-page {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.st-main-box {
    flex: 0 0 900px;
    padding: 20px;
    border-radius: 6px;
    box-sizing: border-box;
    background: #fff;
}

.product-group-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-group-item:last-child {
    margin-bottom: 0;
}
.product-group-item .hd {
    flex: 0 0 368px;
    height: 196px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f7f7f7;
}
.product-group-item .hd .img {
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%); */
    transition: all 0.5s;
}
.product-group-item .hd:hover .img {
    transform: scale(1.2);
}
.product-group-item .hd .suspend {
    height: 22px;
    line-height: 22px;
    padding: 0 10px 0 0;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #00468c;
    background: #fff;
}
.product-group-item .hd .suspend .label {
    color: #fff;
    display: inline-block;
    padding: 0 10px;
    margin-right: 10px;
    background: #00468c;
}

.product-group-item .bd {
    width: 472px;
    height: 196px;
    position: relative;
}
.product-group-item .bd .tit {
    height: 32px;
    line-height: 32px;
    /*margin-bottom: 15px;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 20px;
}
.product-group-item .bd .tit:hover {
    color: #00468c;
}
.product-group-item .bd .txt {
    color: #666;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-group-item .bd .date dt {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #e8e8e8, #fafafa);
    font-size: 12px;
}
.product-group-item .bd .date dd {
    padding: 12px 9px;
    border-radius: 0 4px 4px 4px;
    font-size: 0;
    background: #fafafa;
}
.product-group-item .bd .date dd .tl {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
.product-group-item .bd .date dd .more {
    color: #00468c;
    font-size: 12px;
}

.product-group-item .bd .price {
    color: #f60;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.product-group-item .bd .price .num {
    font-size: 26px;
    font-weight: bold;
}

/* 侧边栏 */
.st-sidebox {
    flex: 0 0 280px;
    height: 1200px;
}

.st-side-block {
    border-radius: 6px;
    background: #fff;
}
.st-side-bar {
    padding: 12px 20px;
    font-size: 18px;
}
.side-hot-group .item {
    padding: 6px 20px;
}
.side-hot-group .item .img {
    width: 240px;
    height: 130px;
    vertical-align: top;
    border-radius: 3px;
}
.side-hot-group .item .tit {
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    margin-top: 10px;
    font-size: 16px;
}
.side-hot-group .item:hover .tit {
    color: #00468c;
}
.side-hot-group .item .price {
    color: #f60;
    margin-top: 8px;
}
.side-hot-group .item .price .num {
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.page-content {
    padding: 40px 0 10px;
    text-align: center;
    font-size: 0;
}
.page-content > a {
    display: inline-block;
    color: #666;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    margin: 0 3px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    font-family: Arial, 'Ã¥Â¾Â®Ã¨Â½Â¯Ã©â€ºâ€¦Ã©Â»â€˜';
}
.page-block {
    display: inline-block;
}
.page-block > span {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 3px;
    font-size: 14px;
}
.page-block > a {
    display: inline-block;
    color: #666;
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin: 0 3px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    font-family: Arial, 'Ã¥Â¾Â®Ã¨Â½Â¯Ã©â€ºâ€¦Ã©Â»â€˜';
}
.page-block > a.on,
.page-block > a:hover,
.page-content > a:hover {
    color: #fff;
    border: 1px solid #00468c;
    background: #00468c;
}
