/* 未能缩小。正在返回未缩小的内容。
(108,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(130,40): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(146,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(158,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(183,36): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(1421,51): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(1426,33): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(1479,17): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(3031,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(3040,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(3075,21): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(3096,17): run-time error CSS1039: Token not allowed after unary operator: '-color-main'
(3125,26): run-time error CSS1034: 
(3125,26): run-time error CSS1042: Expected function, found ','
(3125,30): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
/*pc端*/
.seabay-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .seabay-table tr {
        border-bottom: 1px solid #eee;
    }
    .seabay-table th {
        padding: 0.5rem 0.625rem 0.625rem;
        font-weight: bold;
        text-align: left;
        font-size: 15px;
    }


    .seabay-table td {
        padding: 12px;
        font-size: 14px;
    }
    .seabay-table tbody tr:hover {
        background:#eee;
    }



/*移动端*/
@media screen and (max-width: 767px) {
    .seabay-table thead {
        display: none;
    }

    .seabay-table tbody {
        border: none;
    }

    .seabay-table tr {
        display: block;
        border-radius: 10px;
        margin-bottom: 10px;
        background: #fff !important;
        border: 1px solid #ddd;
        box-shadow: 0 10px 20px 0 rgba(0,0,0,0.04);
        padding: 10px;
    }

    .seabay-table td {
        display: flex;
        justify-content: space-between;
        word-break: normal;
        width: auto;
        text-align: right;
    }

        .seabay-table td:before {
            content: attr(data-label);
            color: #666;
            text-align: left;
            display: flex;
            align-items: center;
        }


    .seabay-table[table-mobile-row-width="half"] tr{
        display:flex;
        flex-wrap:wrap;
    }
    .seabay-table[table-mobile-row-width="half"] td {
        width: 50%;
        box-sizing: border-box;
        position:relative;
    }
       
        .seabay-table[table-mobile-row-width="half"] td::after {
            content: '';
            border-right: 1px solid #eee;
            position: absolute;
            right: 0;
            height: 20px;
        }
        .seabay-table[table-mobile-row-width="half"] td:nth-child(2n+1) {
            padding-right: 20px;
        }
            .seabay-table[table-mobile-row-width="half"] td:nth-child(2n+0) {
                padding-left: 20px;
            }
            .seabay-table[table-mobile-row-width="half"] td:nth-child(2n+0)::after {
                border-right: none;
            }
}
    
/*pc端*/
.seabay-form {
    display: flex;
    flex-wrap: wrap;
}

    .seabay-form .sf-item {
        width: 50%;
        padding: 0 25px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .seabay-form .sf-i-title {
        color: var(--color-main);
        font-size: 16px;
    }

    .seabay-form .sf-i-input {
        margin-top: 6px;
        position: relative;
    }

        .seabay-form .sf-i-input input {
            width: 100%;
            height: 40px;
            border-radius: 0;
            border: 1px solid #D7D7D7;
            font-size: 14px;
            color: #333;
            padding: 0 10px;
            transition: border 0.2s ease-out;
            box-sizing: border-box;
        }

            .seabay-form .sf-i-input input:focus {
                border: 1px solid var(--color-main);
            }

            .seabay-form .sf-i-input input.error {
                border: 1px solid #FF0000;
            }

    .seabay-form .sf-i-i-btn {
        position: absolute;
        top: 5px;
        right: 0;
        height: 30px;
        line-height: 30px;
        border-left: 1px solid #D7D7D7;
        padding: 0 15px;
        font-size: 14px;
        color: var(--color-main);
        font-weight: bold;
        cursor: pointer;
    }
    .seabay-form .sf-i-i-unit {
        position: absolute;
        top: 5px;
        right: 0;
        height: 30px;
        line-height: 30px;
        padding: 0 15px;
        font-size: 14px;
        color: var(--color-main);
        font-weight: bold;
    }

    .seabay-form .sf-item2 {
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .seabay-form .sf-i2-textarea {
        font-family: sans-serif;
        margin-top: 6px;
        width: 100%;
        border-radius: 0;
        border: 1px solid #D7D7D7;
        font-size: 14px;
        color: #333;
        padding: 6px 10px;
        transition: border 0.2s ease-out;
        box-sizing: border-box;
    }

        .seabay-form .sf-i2-textarea:focus {
            border: 1px solid var(--color-main);
        }

        .seabay-form .sf-i2-textarea.error {
            border: 1px solid #FF0000;
        }

    .seabay-form .sf-submit {
        margin: 0 auto;
        width: 300px;
        border-radius: 5px;
        font-weight: bold;
    }
/*2023/5/5
    SEARCH QUOTES按钮悬停样式修改
*/
.seabay-form .sf-submit:hover {
    background: #339AD3;
}
/*移动端*/
@media screen and (max-width: 767px) { 

.seabay-form .sf-item, 
.seabay-form .sf-item2 {
        width: 100%;
        padding: 0;
    }
}

/*
    PC样式 开始
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
*/

.font16 { 
    font-size:16px;
}
.address-box-mask {
    z-index: 9998;
    position: absolute;
    background-color: #333333;
    filter: alpha(opacity=50);
    -moz-opacity: .5;
    opacity: .5;
    top: 0;
    left: 0;
    display: none
}

.address-box {
    border: 0 solid #a0a0a0;
    z-index: 9999;
    position: absolute;
    background-color: #fff;
    overflow: hidden;
    height: 350px;
    width: 680px;
    left: 0;
    top: 0;
    display: none
}

.address-box-title {
    height: 40px;
    line-height: 40px;
    background-color: #f3f3f3;
    color: #666;
    padding-left: 15px;
    position: relative
}

.address-box-close {
    position: absolute;
    right: 0;
    top: 0;
    background: url("//img.seabaycargo.com/s/dialog-close.png") no-repeat 7px 7px;
    height: 13px;
    width: 13px;
    padding: 7px
}

.address-box-body {
    width: 680px;
    height: 320px;
    padding-top: 10px
}

    .address-box-body dl {
        height: 28px;
        line-height: 28px;
        margin-top: 20px
    }

        .address-box-body dl dt {
            width: 100px;
            text-align: right;
            float: left
        }

            .address-box-body dl dt span {
                margin-right: 3px
            }

        .address-box-body dl dd {
            float: left;
            margin-left: 5px
        }

            .address-box-body dl dd .txt {
                height: 30px;
                line-height: 30px;
                padding: 0;
                margin: 0;
                width: 420px;
                border: 1px solid #ccc;
                padding-left: 5px
            }

            .address-box-body dl dd .w {
                width: 340px
            }

            .address-box-body dl dd select {
                line-height: 18px;
                border: 1px solid #ccc;
                padding: 5px;
                vertical-align: middle;
                margin-right: 5px
            }

    .address-box-body .btn-ensure a, .address-box-body .btn-ensure input {
        display: block;
        background-color: #09f;
        height: 40px;
        line-height: 40px;
        width: 150px;
        text-align: center;
        color: #fff;
        font-family: "微软雅黑","microsoft yahei";
        font-size: 16px;
        font-weight: bold;
        margin-left: 200px;
        margin-top: 30px;
        border: none
    }

        .address-box-body .btn-ensure a:hover {
            text-decoration: none
        }

.error-msg {
    height: 18px;
    line-height: 18px;
    vertical-align: middle;
    overflow: hidden;
    border: 1px solid #ffbdbe;
    background: #ffebeb none repeat scroll 0% 0%;
    color: #e4393c;
    padding: 3px 7px 2px
}

.address-box-body .error-msg {
    display: none;
    float: left;
    margin-left: 5px
}

.serch_chunk {
    bottom: 100px
}

.airlift_search {
    margin-top: -10px;
    position: relative
}

    .airlift_search img {
        width: 100%
    }

    .airlift_search .inner {
    }

.service_tel {
    background: #09f;
    color: #fff;
    padding: 10px
}

    .service_tel .tel_num {
        font-size: 26px;
        font-weight: bold
    }

.haiY-nav {
    margin-top: -10px;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #efefef;
    box-shadow: 0 4px 4px rgba(0,0,0,.06);
    height: 70px;
    width: 100%;
    z-index: 100;
    text-align: center;
    font-family: Arail,"MicroSoft YaHei",sans-serif
}

    .haiY-nav ul:after, .haiY-nav ul:before {
        content: "";
        display: inline-block;
        width: 200px;
        height: 2px;
        background: #efefef;
        position: absolute;
        bottom: 34px;
        left: 0
    }

    .haiY-nav ul:after {
        right: 0;
        left: auto
    }

    .haiY-nav li {
        line-height: 70px;
        display: inline-block;
        padding: 0 30px;
        position: relative;
        z-index: 9;
        margin: 0 30px;
        background: #fff
    }

        .haiY-nav li span {
            display: inline-block;
            position: absolute;
            right: -37px;
            color: #999;
            font-size: 24px;
            font-family: cursive
        }

        .haiY-nav li.hue a, .haiY-nav li.hue span {
            color: #09f
        }

        .haiY-nav li a {
            display: inline-block;
            color: #333;
            font-size: 20px
        }

.shipCompany {
    padding-bottom: 15px;
    overflow: hidden
}

    .shipCompany ul {
        float: left
    }

    .shipCompany li {
        float: left;
        margin: 0 5px;
        padding: 0 5px
    }

        .shipCompany li a {
            color: #333
        }

        .shipCompany li:hover a {
            color: #409eff
        }

        .shipCompany li.on, .shipCompany li.on a {
            background: #409eff;
            border-radius: 3px;
            color: #fff
        }

    .shipCompany span.fl {
        font-weight: bold;
        float: left
    }

.haiYbj .message {
    padding: 10px;
    background: rgba(240,243,251,.2);
    border: 1px solid rgba(76,89,101,.05)
}

    .haiYbj .message li {
        color: #333;
        line-height: 40px
    }

        .haiYbj .message li span {
            color: #333;
            width: 85px;
            font-weight: bold;
            text-align: right;
            display: inline-block
        }

        .haiYbj .message li .tag {
            background: #409eff;
            color: #fff;
            padding: 3px 7px;
            margin-right: 10px
        }

.haiYbj .cargo ul {
    padding: 20px;
    overflow: hidden;
    background: rgba(240,243,251,.2);
    border: 1px solid rgba(76,89,101,.05)
}

.haiYbj .cargo li {
    float: left;
    width: 33.33%
}

.haiYbj .cargo label {
    line-height: 30px;
    display: inline-block;
    padding: 0 5px;
    vertical-align: -1px;
    color: #409eff;
    margin-right: 10px
}

.haiYbj .cargo span {
    display: inline-block;
    border: 1px solid #ccc;
    height: 30px;
    line-height: 30px;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    color: #777;
    cursor: pointer
}

.haiYbj .cargo input {
    border: 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 30px;
    line-height: 30px;
    width: 70px;
    vertical-align: middle;
    text-align: center
}

.haiYbj .serve {
    padding: 20px;
    overflow: hidden;
    background: rgba(240,243,251,.2);
    border: 1px solid rgba(76,89,101,.05)
}

    .haiYbj .serve input {
        width: 300px;
        line-height: 40px;
        float: left
    }

    .haiYbj .serve .nav {
        overflow: hidden;
        height: inherit;
        background: none
    }

        .haiYbj .serve .nav li {
            color: #333;
            cursor: pointer;
            margin-bottom: 20px;
            line-height: 40px;
            float: none;
            margin-right: 20px
        }

            .haiYbj .serve .nav li div {
                float: right;
                width: 700px;
                opacity: .3
            }

            .haiYbj .serve .nav li .com {
                width: 100%;
                background: #fff;
                border: 1px solid #ddd;
                padding: 10px;
                box-sizing: border-box;
                margin-top: 10px;
                display: none
            }

            .haiYbj .serve .nav li.on .com {
                display: block
            }

            .haiYbj .serve .nav li .com .text1 {
                font-size: 16px;
                margin-bottom: 10px
            }

            .haiYbj .serve .nav li .com .text2 {
                padding-left: 20px;
                color: #666;
                line-height: 19px;
                margin-bottom: 20px;
                margin-right: 0;
                position: relative
            }

                .haiYbj .serve .nav li .com .text2 span {
                    color: #999;
                    display: block;
                    margin-top: 5px
                }

            .haiYbj .serve .nav li.on div {
                opacity: 1
            }

    .haiYbj .serve li label:before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        vertical-align: -2px;
        margin-right: 5px;
        background: url(//img.seabaycargo.com/s/home-icon.png) -31px -48px no-repeat
    }

    .haiYbj .serve li .text2 label:before {
        position: absolute;
        content: "";
        display: inline-block;
        left: 0;
        top: -10px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        border: 1px solid #9e9e9e;
        background: none
    }

    .haiYbj .serve li .text2 input:checked + label:before {
        border: 1px solid #09f
    }

    .haiYbj .serve li .text2 input:checked + label:after {
        position: absolute;
        content: "";
        display: inline-block;
        left: 3px;
        top: -7px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #09f
    }

    .haiYbj .serve li .Handover label:before {
        position: absolute;
        content: "";
        display: inline-block;
        left: 0;
        top: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid #9e9e9e;
        background: none
    }

    .haiYbj .serve input[type="checkbox"], .haiYbj .serve input[type="radio"] {
        display: none
    }

    .haiYbj .serve .nav li label:hover:before {
        background-position: -59px -48px
    }

    .haiYbj .serve input[type="checkbox"]:checked + label:before {
        background-position: -86px -48px
    }

    .haiYbj .serve label, .haiYbj .serve span {
        display: inline-block
    }

.btn-gainOffer {
    background: #409eff;
    border: 0;
    color: #fff;
    line-height: 40px;
    width: 260px;
    margin: 0 auto 13px;
    display: block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px
}

    .btn-gainOffer:hover {
        background: #3692f1
    }

.haiYbj .clause {
    padding: 20px;
    padding-bottom: 0;
    margin-bottom: 10px;
    background: rgba(240,243,251,.2);
    border: 1px solid rgba(76,89,101,.05)
}

    .haiYbj .clause .tit {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 10px
    }

    .haiYbj .clause li {
        font-size: 14px;
        padding: 10px;
        color: #666;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        overflow: hidden;
        display: flex;
        position: relative
    }

        .haiYbj .clause li p {
            font-size: 14px
        }

        .haiYbj .clause li.on {
            color: #333333;
            border: 1px solid red
        }

            .haiYbj .clause li.on span {
                color: red
            }

            .haiYbj .clause li.on:after {
                content: "";
                display: inline-block;
                width: 30px;
                height: 30px;
                position: absolute;
                bottom: 0;
                right: 0;
                background: url(//img.seabaycargo.com/s/arrows-dui.png) no-repeat
            }

    .haiYbj .clause span {
        font-size: 24px;
        width: 100px;
        line-height: 38px;
        text-align: center
    }

.xi_qr.txt_center .call {
    background: #1e9fff;
    color: #fff;
    padding: 10px 10px 2px 10px;
    text-align: left
}

    .xi_qr.txt_center .call p {
        font-size: 18px
    }

    .xi_qr.txt_center .call h2 {
        color: #fff;
        font-size: 30px
    }

.hGtext {
    padding: 10px 15px;
    line-height: 24px;
    text-indent: 2em;
    font-size: 12px;
    overflow: hidden
}

.se-quotation {
    background: #fff;
    margin-top: 20px;
    padding: 0 20px;
    overflow: hidden;
    box-sizing: border-box
}

    .se-quotation dl {
        margin-top: 20px;
        overflow: hidden;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd
    }

    .se-quotation dt {
        font-size: 16px;
        color: #333;
        text-indent: -10px;
        margin-left: 12px;
        font-weight: bold;
        float: left
    }

        .se-quotation dt:before {
            content: "";
            display: inline-block;
            height: 6px;
            width: 5px;
            background: #63d6b1;
            margin-right: 6px;
            border-top: 6px solid #a1e660
        }

        .se-quotation dt a {
            color: #09f;
            margin-left: 20px;
            font-size: 14px;
            font-weight: 100
        }

    .se-quotation dd {
        float: right;
        font-size: 16px;
        color: red;
        font-weight: bold
    }

        .se-quotation dd span {
            color: #333;
            display: inline-block;
            margin: 0 5px;
            font-weight: 100
        }

        .se-quotation dd b {
            color: #999;
            display: inline-block;
            margin: 0 5px;
            font-weight: 100
        }

    .se-quotation .com {
    }

        .se-quotation .com li {
            line-height: 26px;
            margin-top: 16px
        }

        .se-quotation .com label {
            color: #999;
            margin-right: 20px
        }

        .se-quotation .com p {
            display: inline-block
        }

    .se-quotation .price {
        font-size: 16px;
        color: #333;
        line-height: 50px
    }

    .se-quotation.modular {
    }

        .se-quotation.modular .m-title {
            float: left;
            margin-right: 20px;
            border-bottom: 0
        }

        .se-quotation.modular ul {
            float: left;
            padding-top: 16px
        }

.se-quotation-tab {
    background: #fff;
    overflow: hidden;
    padding: 0 20px
}

    .se-quotation-tab .com {
        border-top: 1px solid #ddd
    }

    .se-quotation-tab .tips {
        color: #333;
        font-size: 14px;
        line-height: 24px;
        margin: 20px 0;
        background: #fcfdfe;
        border: 1px solid #f3f4f6;
        padding: 12px 14px 11px 10px
    }

    .se-quotation-tab .com button, .se-blueBtn {
        min-width: 140px;
        background: #09f;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        height: 50px;
        font-size: 18px;
        color: #fff;
        border: 1px solid #09f;
        padding: 0 25px;
        cursor: pointer;
        line-height: 50px;
        box-sizing: content-box;
        margin: 0 auto 20px;
        display: block
    }

    .se-quotation-tab .com p {
        margin-top: 20px;
        font-size: 14px;
        color: #09f
    }

        .se-quotation-tab .com p span {
            color: #333;
            font-size: 16px
        }

    .se-quotation-tab .com textarea {
        width: 100%;
        display: block;
        padding: 10px;
        box-sizing: border-box;
        margin: 20px 0;
        min-height: 120px
    }

.se-quotation table th {
    padding: 0;
    font-weight: 100;
    font-size: 12px;
    height: 34px;
    line-height: 34px;
    background: #09f;
    border: 0;
    color: #fff;
    padding-left: 15px
}

.se-quotation table td {
    line-height: 26px;
    font-size: 12px;
    height: 26px;
    padding: 0;
    padding-left: 10px
}

.se-quotation table .zj td {
    height: 40px;
    line-height: 40px;
    padding-right: 10px;
    border: 0;
    padding-top: 10px
}

.se-quotation table {
    border: 0;
    width: 1080px;
    float: right;
    margin-top: 15px;
    margin-bottom: 20px
}

.se-quotation .td {
    background: #eef8ff
}

.se-quotation .bold {
    font-weight: bold
}

.se-quotation td p {
    color: #999;
    font-size: 12px
}

.se-quotation .red b {
    color: #333 !important;
    margin: 0 5px
}

.se-quotation .price label {
    color: #999;
    font-size: 14px
}

.hy-hint {
    margin-top: 20px
}

    .hy-hint .top {
        width: 100%;
        height: 3px;
        background: #4c5a65
    }

    .hy-hint .info {
        background: #fff;
        padding: 40px 200px
    }

.se-info-tit {
    position: relative;
    text-align: center;
    margin-bottom: 80px
}

    .se-info-tit span {
        color: #333;
        position: relative;
        background: #fff;
        padding: 0 30px;
        font-size: 24px
    }

    .se-info-tit:before {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        background: #ddd;
        position: absolute;
        top: 16px
    }

.hy-hint .info .text1 {
    font-size: 16px;
    color: #999;
    margin-bottom: 80px;
    line-height: 30px
}

.hy-hint .info .text2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 100px
}

.seBooking-l {
    width: 820px;
    background: #fff;
    margin-top: 20px;
    float: left;
    padding: 20px;
    box-sizing: border-box
}

    .seBooking-l em {
        color: #fa4a4a
    }

    .seBooking-l dl {
        background: #fcfdfe;
        border: 1px solid #f0f0f0;
        padding: 0 20px 20px 20px;
        font-family: "microsoft yahei";
        position: relative;
        margin-bottom: 20px
    }

    .seBooking-l dt {
        margin: 20px 0 10px
    }

        .seBooking-l dt span {
            font-size: 14px;
            color: #333;
            display: inline-block;
            width: 100px
        }

    .seBooking-l .info dt a {
        color: red;
        text-decoration: underline
    }

    .seBooking-l .info dd {
    }

        .seBooking-l .info dd .text {
            border: 1px solid #ddd;
            overflow: hidden;
            outline: none;
            font-size: 14px;
            text-indent: 5px;
            padding: 10px
        }

    .seBooking-l .info .seRadio li.on {
        color: #333
    }

        .seBooking-l .info .seRadio li.on:before {
            border: 1px solid #a0a0a0
        }

        .seBooking-l .info .seRadio li.on:after {
            background: #a0a0a0
        }

    .seBooking-l .import {
    }

        .seBooking-l .import dt {
            width: 358px
        }

        .seBooking-l .import dd {
            width: 358px
        }

        .seBooking-l .import textarea {
            height: 100px;
            padding: 10px;
            width: 348px;
            box-sizing: border-box
        }

    .seBooking-l .date {
        padding-top: 10px
    }

        .seBooking-l .date dt {
            float: left
        }

            .seBooking-l .date dt span {
                width: auto;
                margin-right: 10px
            }

        .seBooking-l .date dd {
            float: left;
            margin: 15px 0 10px
        }

        .seBooking-l .date input {
            height: 30px;
            margin-right: 10px;
            line-height: 30px;
            width: 259px
        }

    .seBooking-l .other .seRadio a {
    }

    .seBooking-l .other dt {
        float: left
    }

    .seBooking-l .other dd {
        float: left;
        width: 636px;
        margin: 20px 0 10px
    }

    .seBooking-l .other textarea {
        width: 344px;
        height: 100px;
        padding: 10px
    }

.seBooking-r {
    width: 350px;
    float: right;
    margin-top: 20px;
    background: #fff
}

    .seBooking-r .top {
        background: #4c5a65;
        height: 3px
    }

    .seBooking-r .seTet {
        padding: 20px
    }

    .seBooking-r .se-blueBtn {
        width: 100%;
        margin-bottom: 0;
        border-radius: 0;
        box-sizing: border-box
    }

    .seBooking-r dl {
        padding: 0 20px 20px 20px
    }

    .seBooking-r .com dt {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px
    }

    .seBooking-r .com dd {
        padding: 10px;
        color: #333;
        line-height: 30px;
        margin-bottom: 10px;
        background: #fcfdfe;
        border: 1px solid #f3f4f6
    }

.seNavht {
    overflow: hidden;
    width: 880px;
    border-bottom: 1px solid #e9e9e9;
    height: 49px
}

    .seNavht li.on {
        border-bottom: none;
        border-right: 1px solid #e9e9e9;
        color: #09f;
        border-top: 3px solid #09f
    }

    .seNavht li {
        background: #fff;
        padding: 0 30px;
        float: left;
        padding-top: 17px;
        display: block;
        cursor: pointer;
        font-family: MicrosoftYaHei-Bold;
        font-size: 16px;
        color: #333;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 16px;
        text-align: center;
        border-right: 1px solid #e9e9e9
    }

.ky_title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px
}

.ky-con dl {
    overflow: initial;
    min-height: 36px;
    margin-bottom: 20px
}

.ky-con dt {
    float: left;
    line-height: 34px
}

.ky-con dd {
    float: left;
    margin: 0 10px;
    position: relative
}

    .ky-con dd input {
        width: 219px;
        height: 34px
    }

.ky-con .search_show {
    display: none;
    width: 231px;
    z-index: 9
}

    .ky-con .search_show a {
        text-align: left;
        padding-left: 20px
    }

.ky_title1 {
    height: 40px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    background: #f7f7f7;
    color: #409eff;
    border: 1px solid #f1f1f1
}

.ky-con-bk {
    border: 1px solid #dadada;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 20px 100px 10px
}

    .ky-con-bk li {
        margin-bottom: 10px;
        display: flex
    }

        .ky-con-bk li span {
            width: 70px;
            line-height: 36px;
            display: inline-block
        }

        .ky-con-bk li input {
            height: 36px;
            margin: 0 10px;
            width: 300px
        }

        .ky-con-bk li .file {
            border: 0;
            margin-top: 7px
        }

        .ky-con-bk li textarea {
            width: 300px;
            margin: 0 10px;
            padding-top: 10px;
            min-height: 100px
        }

        .ky-con-bk li button {
            border: 0;
            color: #fff;
            line-height: 36px;
            font-size: 15px;
            width: 200px;
            margin-left: 80px;
            margin-top: 20px;
            background: #409eff
        }

.ky-detail li {
    width: 50%;
    float: left;
    margin-bottom: 15px
}

.ky-detail ul {
    overflow: hidden;
    margin-bottom: -15px
}

.ky-detail p {
    line-height: 30px
}

.home-iconSort {
    display: inline-block;
    height: 20px;
    width: 25px;
    vertical-align: -2px;
    margin-left: 5px;
    float: none;
    background: url(//img.seabaycargo.com/s-en/sarrow.svg) -6px 0 no-repeat;
    background-size: 100%;
}

    .home-iconSort.up {
        background-position: -6px 7px;
        vertical-align:2px;
    }

    .home-iconSort.dow {
        background-position: -6px -12px;
        vertical-align: -10px;
    }

.search-port-li {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 3px;
    z-index: 999;
    box-shadow: 0 1px 3px #666;
    overflow: hidden;
    background-color: #fff
}

    .search-port-li .search-li-bd {
        padding: 15px 0
    }

        .search-port-li .search-li-bd .tab-li {
            height: 27px;
            border-bottom: 1px solid #e7ebf3;
            margin: 0 20px
        }

            .search-port-li .search-li-bd .tab-li:after {
                content: "";
                display: block;
                width: 100%;
                height: 1px;
                background: #09b3cd;
                bottom: -1px;
                position: absolute
            }

            .search-port-li .search-li-bd .tab-li li {
                float: left;
                padding: 0 12px;
                font-size: 12px;
                height: 26px;
                line-height: 26px;
                background-color: #fff;
                cursor: pointer
            }

                .search-port-li .search-li-bd .tab-li li.z-cur {
                    border-bottom: 2px solid var(--color-main);
                    height: 25px;
                    line-height: 25px;
                    margin: 0 11px;
                    padding: 0;
                    color: var(--color-main);
                    font-weight: bold
                }

        .search-port-li .search-li-bd .tab-cell-li {
            max-height: 280px;
            padding: 0;
            padding-left: 14px;
            overflow-x: hidden;
            overflow-y: auto;
            background: #fff
        }

        .search-port-li .search-li-bd .tab-cell {
            display: none
        }

            .search-port-li .search-li-bd .tab-cell.z-on {
                display: block
            }

.u-tt-primary {
    margin: 20px 0;
    display: block;
    border-bottom: 1px solid #edeff6;
    font-size: 14px;
    font-weight: bold;
    height: 21px
}

.search-port-li .search-li-bd .tab-cell .tab-cell-item .u-tt-primary span {
    font-size: 12px;
    color: #333;
    background-color: #f6f6f7;
    font-weight: initial;
    padding: 3px 15px
}

.new-home .search-box .right-box .search-filter-li .filter-bd ul li a, .search-port-li .search-li-bd .tab-cell .tab-cell-item li a {
    display: block;
    line-height: 24px;
    width: 186px;
    padding: 4px 6px;
    font-size: 12px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box
}

.search-port-li .search-li-bd .tab-cell .tab-cell-item li:hover a {
    width: 186px;
    color: var(--color-main);
    font-weight: bold
}

.search-port-li .search-li-bd .tab-cell .tab-cell-item li {
    float: left
}

.search-port-li .search-li-bd .tab-cell .tab-cell-item ul, .search-port-li .search-li-bd .tab-li ul {
    background: #fff;
    padding: 0
}

.shipCompany {
    padding: 15px;
    overflow: hidden
}

.freights_list th a {
    color: #fff
}

.start_list {
    position: absolute;
    left: 0;
    top: 33px;
    background: #fff;
    -webkit-box-shadow: 0 3px 22px #c6c6c6;
    -moz-box-shadow: 0 3px 22px #c6c6c6;
    box-shadow: 0 3px 22px #c6c6c6;
    width: 160px;
    text-align: center;
    display: none
}

    .start_list li {
        display: block;
        padding: 8px 0;
        cursor: pointer
    }

    .start_list li {
        display: block;
        padding: 8px 0;
        cursor: pointer
    }

        .start_list li:hover {
            background-color: #efefef;
            color: #333333
        }

.airlift_input .start_p, .airlift_input .icon_start_p {
    cursor: pointer
}

.end-port-box, .end-port-autocomplete {
    top: 36px
}

.search-li-hd h4 {
    height: 16px;
    line-height: 16px;
    padding-top: 8px;
    color: #999
}

.search-port-li {
    border-radius: 0 0 3px
}

.end-port-autocomplete {
    width: 494px;
    left: 160px
}

    .end-port-autocomplete li {
        height: 38px;
        line-height: 38px;
        padding-left: 12px;
        cursor: pointer
    }

        .end-port-autocomplete li:hover {
            background-color: #efefef
        }

.details_title {
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    line-height: 40px
}

.fcl-detail-desc-weight {
    padding: 8px;
    color: #f90;
    background-color: #f0f0f0;
    border: 1px solid #ddd
}

.haiYbj .serve .nav li .com .text2 span {
    color: #666
}

.hGtext {
    overflow: hidden;
    text-align: justify
}

.haiYbj .serve input {
    color: #666;
    padding-left: 10px
}

.fcl-top-nav {
    padding-bottom: 12px
}

.haiY-nav li.hue div {
    color: #09f
}

.haiY-nav li div {
    display: inline-block;
    color: #333;
    font-size: 16px
}

.se-quotation .com p {
    margin-right: 20px
}

.fcl-price-sheet-body .goods-item {
    margin-right: 15px
}

.fcl-price-sheet-body .tb-price-detail-box {
    border-collapse: collapse
}

    .fcl-price-sheet-body .tb-price-detail-box th, .fcl-price-sheet-body .tb-price-detail-box td {
        border-collapse: collapse;
        border: 1px solid #ddd
    }

    .fcl-price-sheet-body .tb-price-detail-box th {
        border-color: #09f
    }

.fcl-price-sheet-body .se-quotation.modular .m-title {
    font-size: 16px;
    color: #333;
    line-height: 50px;
    height: 49px
}

.success-body .se-blueBtn {
    width: 200px;
    border-radius: 4px;
    text-align: center
}

    .success-body .se-blueBtn:hover {
        color: #fff
    }

.fcl-price-order-body .gray-Btn {
    text-align: center;
    background-color: #999
}

    .fcl-price-order-body .gray-Btn:hover {
        color: #fff
    }

.seBooking-l .info dt a {
    text-decoration: none
}

.order-body .item-box {
    background: #fcfdfe;
    border: 1px solid #f0f0f0;
    padding: 20px;
    margin-bottom: 20px
}

.order-body .useraddress {
    margin-bottom: 20px;
    clear: both;
    background-color: #fefaff;
    padding-bottom: 10px
}

    .order-body .useraddress .header {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        font-weight: bold;
        background-color: #fcfdfe;
        padding-left: 10px;
        border: 1px solid #fcfdfe
    }

        .order-body .useraddress .header a {
            margin-left: 20px;
            color: #09f
        }

    .order-body .useraddress .item {
        border: 1px solid #e7e7e7;
        position: relative;
        z-index: 2;
        width: 732px;
        padding-left: 26px;
        color: #777;
        margin-top: 12px;
        margin-left: 10px
    }

        .order-body .useraddress .item:hover {
            border: 1px solid #e4393c
        }

    .order-body .useraddress .sel {
        border: 1px solid #e4393c
    }

        .order-body .useraddress .sel s {
            background: url("//img.seabaycargo.com/s/detail_ico.png") no-repeat scroll -51px 0;
            bottom: -3px;
            height: 18px;
            position: absolute;
            right: -6px;
            width: 21px
        }

    .order-body .useraddress .item .info {
        width: 600px;
        margin: 5px;
        cursor: pointer
    }

        .order-body .useraddress .item .info span {
            margin-right: 8px
        }

    .order-body .useraddress .item .op {
        position: absolute;
        right: 10px;
        top: 5px;
        display: none;
        z-index: 10
    }

        .order-body .useraddress .item .op a {
            margin-right: 10px;
            color: #4681bd
        }

    .order-body .useraddress .addr-toggle {
        position: relative;
        display: block;
        width: 65px;
        color: #444;
        margin-top: 5px;
        color: #666;
        font-weight: normal;
        font-size: 12px;
        margin-left: 10px;
        margin-top: 12px
    }

        .order-body .useraddress .addr-toggle s {
            right: 2px;
            top: 4px;
            position: absolute;
            height: 10px;
            width: 9px;
            background: url("//img.seabaycargo.com/s/addr-i.png") no-repeat scroll 0 0
        }

        .order-body .useraddress .addr-toggle:hover {
            text-decoration: none
        }

    .order-body .useraddress .off s {
        background-position: 0 -10px
    }

.order-body .item-box table {
    width: 100%
}

.order-body .item-box th {
    height: 40px;
    line-height: 40px
}

.order-body .item-box textarea {
    width: 340px;
    height: 120px;
    font-size: 12px;
    padding: 8px
}

.order-body .other-param .txt {
    width: 200px;
    height: 30px;
    line-height: 30px
}

.order-body .other-param .title {
    float: left;
    height: 40px;
    line-height: 40px;
    width: 110px;
    margin-bottom: 8px
}

.order-body .other-param .item {
    float: left;
    height: 40px;
    line-height: 40px;
    width: 580px;
    margin-bottom: 8px
}

.order-body .other-param .enum div {
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    float: left;
    width: 150px;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer
}

.order-body .other-param .enum .sel {
    background-color: #e4393c;
    color: #fff
}

.freights_list {
    color: #333
}

    .freights_list td p.arrow_text {
        color: #333
    }

.haiYbj .serve .serve-items input, .haiYbj .serve .serve-items label {
    float: left;
    display: block;
    line-height: 30px;
    padding: 0;
    margin: 0
}

.haiYbj .serve .serve-items label {
    margin-right: 15px
}

.haiYbj .serve .serve-items input {
    width: 20px;
    margin-top: 8px
}

.serve-items-goods-value-box span {
    float: left;
    color: #666;
    margin-right: 10px
}

.haiYbj .message .table-box li {
    display: table-cell;
    text-align: center
}

    .haiYbj .message .table-box li span {
        display: block;
        font-weight: normal;
        text-align: center;
        width: 170px;
        border-bottom: 1px solid #ddd
    }

.haiYbj .message .bg_blue span {
    background-color: #1e9fff;
    color: #fff
}

.detail-price-box {
    margin: 0;
    padding: 0
}

.special-require-box .se-quotation {
    margin: 0;
    padding: 0
}

    .special-require-box .se-quotation.modular {
        height: 50px;
        line-height: 50px;
        background-color: #eef8ff;
        padding-left: 20px
    }

        .special-require-box .se-quotation.modular ul {
            padding-top: 0
        }

.special-require-box .se-quotation-tab .com {
    border: 0
}

.special-require-box .se-quotation.modular .m-title {
    color: #333;
    font-weight: bold;
    color: #409eff;
    font-size: 16px
}

.fcl-search { bottom: auto; border-radius:0px;}

.index-banner, .index-banner .bd li {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 620px
}

.index-banner  {
    margin-bottom: 40px
}

.index-banner .bd {
    z-index: 0;
    position: relative
}

.index-banner .bd_again {
    padding: 0 !important
}

.index-banner .hd ul li {
    width: 25px;
    height: 4px;
    background: #fff;
    opacity: 1;
    filter: alpha(opacity=100);
    text-indent: 9999px;
    overflow: hidden;
    display: inline-block;
    margin: 0 5px
}

.index-banner .hd ul .on {
    background: #4fb5e9
}

.index-banner .hd {
    width: 100%;
    position: absolute;
    z-index: 9;
    bottom: 10px;
    left: 0;
    height: 30px;
    line-height: 30px
}

    .index-banner .hd ul {
        text-align: center
    }

.index-banner .timer {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0;
    background: #4fb5e9;
    filter: alpha(opacity=70);
    opacity: .7;
    font-size: 0;
    overflow: hidden
}

.home-banner-prev, .home-banner-next {
    width: 34px;
    height: 68px;
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 20px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    background: url(//img.seabaycargo.com/s/sprite.png) no-repeat
}

.chunk_relative:hover .home-banner-prev, .chunk_relative:hover .home-banner-next {
    opacity: .6
}

.chunk_relative .home-banner-prev:hover, .chunk_relative .home-banner-next:hover {
    opacity: 1
}

.home-banner-next {
    right: 20px;
    left: auto;
    background-position: -44px 0
}

.serch_chunk {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -345px;
    background: url(//img.seabaycargo.com/s/bg-search.png) repeat;
    z-index: 100;
    border-radius: 6px;
    padding: 15px;
    box-sizing: border-box
}

    .serch_chunk .initial_tabs li {
        float: left
    }

        .serch_chunk .initial_tabs li a {
            display: block;
            text-align: center;
            -webkit-transition: 0s;
            -o-transition: 0s;
            transition: 0s
        }

            .serch_chunk .initial_tabs li a:link, .serch_chunk .initial_tabs li a:visited, .serch_chunk .initial_tabs li a:hover, .serch_chunk .initial_tabs li a:active {
                color: #fff
            }

            .serch_chunk .initial_tabs li a span:before {
                content: "";
                height: 17px;
                width: 17px;
                display: inline-block;
                vertical-align: -3px;
                margin-right: 5px;
                background: url(//img.seabaycargo.com/s/home-icon.png) 0 -1px no-repeat;
                -webkit-transition: all ease-in-out .3s;
                -o-transition: all ease-in-out .3s;
                -moz-transition: all ease-in-out .3s;
                -ms-transition: all ease-in-out .3s;
                transition: all ease-in-out .3s
            }

            .serch_chunk .initial_tabs li a span {
                display: block;
                height: 24px;
                width: 95px;
                line-height: 24px
            }

            .serch_chunk .initial_tabs li a.current {
                background: url(//img.seabaycargo.com/s/home-arrow.png) bottom center no-repeat #0357bc
            }

                .serch_chunk .initial_tabs li a.current span:before {
                    background-position: 0 -31px
                }

#tab1, #tab2, #tab3, #tab4, #tab5, #tab6, #tab21, #tab22, #tab23 {
    display: none
}


.initial_info {
    height: 44px;
    margin-top: 30px;
}
    .initial_info .airlift_input {
        display: flex;
    }
    .initial_info .sea_p {
        border-radius: 0;
        flex: 1;
        margin-right: 25px;
        border: 1px solid #D7D7D7;
        height: 50px;
        line-height: 50px;
        padding-left: 17px;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
        .initial_info .sea_p input {
            font-size: 16px;
            flex: 1;
            position:static !important;
        }
            .initial_info .sea_p .label{
                font-weight:bold;
            }
            .initial_info .detail_a {
                border-radius: 0;
                height: 50px;
                line-height: 50px;
                font-size: 16px;
                font-weight: bold;
                width: 150px;
                border: 1px solid #D7D7D7;
                box-sizing: border-box;
            }
/*2023/5/5
    SEARCH QUOTES按钮悬停样式修改
*/
.initial_info .detail_a:hover {
    background: #339AD3;
}
#freight-search-port-list-box { position: absolute; top: 0; left: 0; width: 100%; }


    #tabs_info .one_input input {
        width: 603px;
        border: none;
        height: 44px;
        line-height: 44px;
        border-radius: 3px;
        float: left;
        padding-left: 10px;
        color: #2662b7
    }

    #tabs_info .one_input .rim {
        border-radius: 3px 3px 0 0
    }

    #tabs_info a.search_icon {
        display: block;
        float: left;
        height: 44px;
        line-height: 44px;
        width: 42px;
        font-size: 16px;
        background: url(//img.seabaycargo.com/s/bg-icon.png) 12px -204px no-repeat #4fb5e9;
        border-radius: 3px;
        margin-left: 5px
    }

        #tabs_info a.search_icon:link, #tabs_info a.search_icon:visited, #tabs_info a.search_icon:hover, #tabs_info a.search_icon:active {
            color: #fff
        }

    #tabs_info .one_input ul {
        position: absolute;
        left: 0;
        width: 613px;
        top: 36px;
        background: #fff;
        -webkit-box-shadow: 0 3px 22px #c6c6c6;
        -moz-box-shadow: 0 3px 22px #c6c6c6;
        box-shadow: 0 4px 15px #d0d0d0;
        max-height: 250px;
        padding: 10px 0;
        display: none
    }

        #tabs_info .one_input ul:hover {
            overflow-y: scroll;
            overflow-x: hidden
        }

        #tabs_info .one_input ul li {
            height: 30px;
            line-height: 30px
        }

            #tabs_info .one_input ul li a {
                display: block;
                background: #fff;
                padding: 0 10px
            }

                #tabs_info .one_input ul li a:link, #tabs_info .one_input ul li a:visited, #tabs_info .one_input ul li a:hover, #tabs_info .one_input ul li a:active {
                    color: #707070
                }

                #tabs_info .one_input ul li a span {
                    display: block
                }

                #tabs_info .one_input ul li a:hover {
                    background: #f7f7f7
                }

.seaborne_input {
    border: 0
}

    .seaborne_input .order_num {
        width: 423px;
        border: none;
        height: 44px;
        line-height: 44px;
        padding-left: 10px;
        color: #2662b7
    }

    .seaborne_input .choice_ship {
        display: block;
        width: 172px;
        height: 44px;
        line-height: 44px;
        background: #fff;
        border-left: 1px solid #e6e6e6;
        padding-left: 10px;
        color: #999
    }

        .seaborne_input .choice_ship i {
            padding: 1px 15px 0 0;
            background: url(//img.seabaycargo.com/s/bg-icon.png) -79px -212px no-repeat;
            margin-left: 10px
        }

        .seaborne_input .choice_ship.arrow_top i {
            background: url(//img.seabaycargo.com/s/bg-icon.png) -100px -212px no-repeat
        }

    .seaborne_input .show_ship {
        width: 596px;
        position: absolute;
        left: 0;
        top: 33px;
        background: #fff;
        padding: 0 10px 10px 10px;
        -webkit-box-shadow: 0 3px 22px #c6c6c6;
        -moz-box-shadow: 0 3px 22px #c6c6c6;
        box-shadow: 0 3px 22px #c6c6c6;
        max-height: 250px;
        overflow-y: scroll;
        display: none
    }

        .seaborne_input .show_ship span {
            display: block;
            position: absolute;
            top: 10px;
            left: 0;
            font-weight: bold
        }

        .seaborne_input .show_ship ul {
            border-bottom: 1px solid #ccc;
            padding: 10px 0 0 30px
        }

            .seaborne_input .show_ship ul.last {
                border-bottom: none
            }

        .seaborne_input .show_ship li {
            float: left;
            margin: 0 15px 10px 0
        }

            .seaborne_input .show_ship li a:hover {
                color: #4fb5e9
            }

.airlift_input {
    border: 0
}

    .airlift_input .start_p {
        width: 150px;
        height: 44px;
        line-height: 44px;
        border: none;
        padding-left: 10px;
        color: #4fb5e9
    }

    .airlift_input .icon_start_p {
        display: block;
        position: absolute;
        top: 13px;
        left: 130px;
        width: 15px;
        height: 10px;
        background: red;
        z-index: 2;
        background: url(//img.seabaycargo.com/s/bg-icon.png) -123px -215px no-repeat
    }

.start_list {
    position: absolute;
    left: 0;
    top: 33px;
    background: #fff;
    -webkit-box-shadow: 0 3px 22px #c6c6c6;
    -moz-box-shadow: 0 3px 22px #c6c6c6;
    box-shadow: 0 3px 22px #c6c6c6;
    width: 160px;
    text-align: center;
    display: none
}

    .start_list li a {
        display: block;
        padding: 8px 0
    }

        .start_list li a:hover {
            background: #ccc
        }

.city_code_list {
    position: absolute;
    top: 33px;
    left: 0;
    background: #fff;
    width: 100%;
    display: none;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.13);
    -moz-box-shadow: 0 10px 20px rgba(0,0,0,.13);
    box-shadow: 0 10px 20px rgba(0,0,0,.13)
}

.serch_chunk .city_code_list ul {
    background: #e6e6e6;
    font-size: 12px;
    padding-top: 2px;
    padding: 2px 3px 0 3px
}

.serch_chunk .city_code_list li {
    margin-right: 8.2px
}

    .serch_chunk .city_code_list li a {
        width: 50px;
        height: 30px;
        line-height: 30px
    }

        .serch_chunk .city_code_list li a:link, .serch_chunk .city_code_list li a:visited, .serch_chunk .city_code_list li a:hover, .serch_chunk .city_code_list li a:active {
            color: #333
        }

        .serch_chunk .city_code_list li a.current {
            background: #fff
        }

#tabs3_info ul, #tabs4_info ul, #tabs5_info ul {
    background: #fff;
    padding-left: 11px
}

#tabs3_info li, #tabs4_info li, #tabs5_info li {
    float: left;
    margin-right: 29px
}

    #tabs3_info li a:link, #tabs3_info li a:visited, #tabs3_info li a:active, #tabs4_info li a:link, #tabs4_info li a:visited, #tabs4_info li a:active, #tabs5_info li a:link, #tabs5_info li a:visited, #tabs5_info li a:active {
        color: #666
    }

    #tabs3_info li a:hover, #tabs4_info li a:hover, #tabs5_info li a:hover {
        color: #4fb5e9
    }

.city_code_attention, .search-li-hd h4 {
    height: 37px;
    line-height: 37px;
    font-size: 12px;
    border-top: 1px solid #e6e6e6;
    color: #666;
    padding-left: 10px
}

.airlift_input .font_to {
    background: #fff;
    height: 44px;
    width: 1px
}

    .airlift_input .font_to:before {
        content: "";
        width: 1px;
        background: #dcdcdc;
        height: 20px;
        display: inline-block;
        margin-top: 11px
    }

.airlift_input .city_code {
    height: 44px;
    line-height: 44px;
    border: none;
    width: 479px;
    padding-left: 10px;
    color: #4fb5e9
}

.seaborne_input .choice_ship span {
    display: inline-block;
    width: 138px
}

.price_off {
    margin: 40px 0
}

    .price_off .title_more h2 {
        font-size: 40px;
        line-height: 40px;
        text-align: center;
        color: #666;
        margin: 0;
        border: 0
    }

.title_more h2 {
    font-size: 30px;
    line-height: 80px;
    text-align: center;
    float: none;
    position: relative;
    border-bottom: 1px dotted #e6e6e6;
    margin-bottom: 15px
}

    .title_more h2:after, .title_more h2:before {
        content: "";
        display: inline-block;
        width: 57px;
        height: 1px;
        margin: 0 26px;
        background-color: #d8d8d8;
        vertical-align: middle
    }

.price_off .title_more h2 span {
    width: 72px;
    height: 40px;
    font-size: 24px;
    display: inline-block;
    vertical-align: 8px;
    margin-left: 8px;
    border: 1px solid #666
}

.title_more h2 a {
    font-size: 12px
}

.title_more a:link, .title_more a:visited, .title_more a:active {
    color: #999
}

.title_more a:hover {
    color: #4fb5e9
}

.haiYbj .message .lcl-basic-box li span {
    width: 280px;
    background-color: #eee;
    color: #333
}

    .haiYbj .message .lcl-basic-box li span.w-s {
        width: 150px
    }

.haiYbj .message .lcl-price-box li {
    float: left;
    border: 1px solid #1e9fff;
    width: 416px;
    margin-right: 20px;
    color: #1e9fff;
    font-weight: bold;
    font-size: 14px
}

    .haiYbj .message .lcl-price-box li:last-child {
        margin-right: 0
    }

    .haiYbj .message .lcl-price-box li span {
        background-color: #1e9fff;
        color: #fff;
        text-align: center;
        margin-right: 20px
    }

.haiYbj .message .lcl-price-box {
    margin-bottom: 10px
}

.lcl-price-detail table th {
    background-color: #eee;
    color: #333
}

.frm_freight_lcl_addgoods_dialog {
    background-color: #fcfdfe;
    border: 1px solid #eee;
    padding: 0;
    margin: 0;
    padding-bottom: 15px
}

    .frm_freight_lcl_addgoods_dialog .header {
        clear: both;
        padding: 10px;
        padding-left: 20px;
        height: 40px;
        line-height: 40px
    }

        .frm_freight_lcl_addgoods_dialog .header div {
            display: table-cell;
            width: 100px;
            cursor: pointer
        }

        .frm_freight_lcl_addgoods_dialog .header s {
            display: inline-block;
            width: 18px;
            height: 18px;
            margin-right: 5px;
            background: url(//img.seabaycargo.com/s/home-icon.png) 0 0 no-repeat;
            margin-top: 10px;
            vertical-align: -4px
        }

            .frm_freight_lcl_addgoods_dialog .header s.curr {
                background-position-y: -30px
            }

    .frm_freight_lcl_addgoods_dialog .preview-box {
        margin: 0 0 0 20px
    }

        .frm_freight_lcl_addgoods_dialog .preview-box th, .frm_freight_lcl_addgoods_dialog .preview-box td {
            height: 40px;
            line-height: 30px;
            position: relative
        }

            .frm_freight_lcl_addgoods_dialog .preview-box td span {
                position: absolute;
                top: 5px;
                left: 160px
            }

        .frm_freight_lcl_addgoods_dialog .preview-box .input, .frm_freight_lcl_addgoods_dialog .package-box .input {
            height: 28px;
            line-height: 28px;
            width: 180px;
            padding-left: 10px;
            margin-right: 30px
        }

    .frm_freight_lcl_addgoods_dialog .package-box {
        margin: 0 20px 0 20px;
        display: none
    }

        .frm_freight_lcl_addgoods_dialog .package-box table {
            width: 100%;
            height: 40px;
            line-height: 40px
        }

        .frm_freight_lcl_addgoods_dialog .package-box th {
            background-color: #eee;
            border: 1px solid #ddd;
            border-collapse: collapse;
            font-size: 14px;
            text-align: center
        }

        .frm_freight_lcl_addgoods_dialog .package-box td {
            border: 1px solid #ddd;
            border-collapse: collapse;
            padding: 5px 10px
        }

            .frm_freight_lcl_addgoods_dialog .package-box td input[type="text"] {
                width: 120px;
                height: 28px;
                line-height: 28px;
                padding-left: 8px
            }

            .frm_freight_lcl_addgoods_dialog .package-box td input.red {
                border: 1px solid red
            }

        .frm_freight_lcl_addgoods_dialog .package-box .top-nav {
            height: 70px;
            line-height: 70px
        }

            .frm_freight_lcl_addgoods_dialog .package-box .top-nav span {
                margin-right: 10px
            }

                .frm_freight_lcl_addgoods_dialog .package-box .top-nav span b {
                    font-weight: bold;
                    font-size: 16px;
                    color: #333333
                }

        .frm_freight_lcl_addgoods_dialog .package-box .btnAddPackage {
            font-size: 14px;
            color: #333;
            font-weight: bold;
            margin-right: 60px
        }

            .frm_freight_lcl_addgoods_dialog .package-box .btnAddPackage span {
                font-size: 16px;
                color: #333;
                margin-right: 5px
            }

        .frm_freight_lcl_addgoods_dialog .package-box .del {
            color: #f90
        }

.freight_total {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    text-align: center
}

    .freight_total strong {
        margin-right: 10px
    }

    .freight_total span {
        color: red
    }

        .freight_total span b {
            color: #00f
        }

.lcl-search {
    bottom: auto
}

.details_title {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0
}

.relevant_current {
    padding: 10px 0;
    border: 1px solid #ddd
}

    .relevant_current li {
        float: left
    }

        .relevant_current li a {
            display: block;
            width: 219px;
            text-align: center;
            height: 30px;
            line-height: 30px
        }

            .relevant_current li a:hover {
                color: #4fb5e9
            }

.hold_introduction {
    margin-top: 20px;
    padding-bottom: 5px
}

.introduction {
    background: #f7f7f7;
    padding: 15px 15px 8px 15px;
    line-height: 1.6;
    height: 120px;
    overflow: hidden;
    border: 1px solid #dadada
}

    .introduction.normal {
        height: auto
    }

    .introduction span {
    }

.show_more {
    position: absolute;
    bottom: 3px;
    right: 3px;
    color: #409eff;
    background: #f7f7f7;
    padding: 0 14px;
    font-weight: bold;
    border: 1px solid #dadada
}

.info_table .name {
    width: 100px;
    background: #f1f1f1;
    font-weight: bold
}

.info_table .name_d {
    width: 306px
}

.three_title {
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    font-weight: bold;
    padding-left: 10px;
    font-size: 16px;
    color: #409eff
}

    .three_title:before {
        content: "";
        display: inline-block;
        width: 2px;
        height: 13px;
        margin-right: 6px;
        background: #409eff
    }

.ocean_shipping {
    padding: 10px 20px;
    margin-bottom: 10px
}

    .ocean_shipping li {
        float: left;
        width: 50%;
        padding-bottom: 7px;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

        .ocean_shipping li a:hover {
            color: #4fb5e9
        }

.ocean_port li {
    width: 25%
}

.s_company_d_table .s_t_left {
    background: #f1f1f1;
    width: 300px;
    text-align: center;
    font-weight: bold
}

.s_company_d_table .s_t_right {
    width: 555px
}

    .s_company_d_table .s_t_right a {
        text-decoration: underline
    }

        .s_company_d_table .s_t_right a:hover {
            color: #4fb5e9
        }

.width236 {
    width: 236px
}

.width300 {
    width: 300px
}

.table_btn {
    padding: 5px 10px;
    background: #4fb5e9
}

    .table_btn:link, .table_btn:visited, .table_btn:active {
        color: #fff
    }

.t_check_login {
    border-top: 0;
    padding: 60px 20px;
    text-align: center;
    font-size: 20px
}

    .t_check_login a {
        margin: 0 10px
    }

        .t_check_login a:link, .t_check_login a:visited, .t_check_login a:active {
            color: #4fb5e9
        }

        .t_check_login a:hover {
            text-decoration: underline
        }

.se-san-fare {
    border: 1px solid #dadada;
    padding: 10px;
    margin-bottom: 10px
}

    .se-san-fare ul {
        overflow: hidden
    }

    .se-san-fare li {
        width: 33.33%;
        float: left;
        line-height: 30px;
        box-sizing: border-box;
        padding: 0 15px;
        cursor: pointer
    }

        .se-san-fare li:hover {
            background: #f4faff
        }

    .se-san-fare .price {
        float: right
    }

    .se-san-fare span {
        color: #409eff;
        font-size: 9pt
    }





    /*今日特价轮播*/
.home-cheapie { margin-top: 35px; }
.home-cheapie dt { width: 400px; height: 299px; }
.home-cheapie img { width: 100%; height: 100%; }
.home-cheapie dd { float: left; width: 800px; background: #fff; }
.home-cheapie dd a { display: block; float: left; width: 400px; border-bottom: 1px solid #f7f7f7; }
.home-cheapie .effects-white { width: 149px; height: 149px; float: left; }
.home-cheapie .text { padding: 10px 20px; float: left; width: 211px; }
.home-cheapie .txt_t { font-size: 14px; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-cheapie .gray { color: #666; font-size: 12px; display: block; margin: 7px 0 15px; }
.home-cheapie .u-gtag { display: inline-block; height: 18px; line-height: 18px; border: 1px dotted #e31436; padding: 0 2px; color: #e31436; margin: 20px 0 0px; }
.home-cheapie .f_price { margin-top: 10px; }
.home-cheapie .f_price span { color: #e31436; font-size: 16px; font-weight: bold; }
.home-cheapie .f_price em { color: #999; margin-left: 10px; font-size: 12px; }
#certify { position: relative; width: 1200px; margin: 0 auto; }
#certify .swiper-container { padding: 30px 0; }
#certify .swiper-slide { width: 470px; height: 244px; background: #fff; -webkit-box-shadow: 0 3px 22px #d5ecf9; -moz-box-shadow: 0 3px 22px #d5ecf9; box-shadow: 0 3px 22px #d5ecf9; border-radius: 15px; }
#certify .swiper-slide a:hover p.txt_t { color: #4fb5e9; }
#certify .swiper-slide-active div { padding: 40px 0 0 100px; }
#certify .swiper-slide-prev div, #certify .swiper-slide-next div { padding: 40px 0 0 50px; }
#certify .swiper-slide div dl { margin-bottom: 40px; }
#certify .swiper-slide div dt { float: left; width: 60px; height: 60px; margin-right: 10px; }
#certify .swiper-slide div dd { float: left; }
#certify .swiper-slide div dd p { padding: 10px 0 6px 0; line-height: 1; }
#certify .swiper-slide .f_price span { color: #ffb550; }
#certify .swiper-slide .f_price em { color: #999; }
#certify .swiper-slide img { display: block; width: 60px; height: 60px; }
#certify .swiper-button-prev { left: 375px; width: 24px; height: 28px; background: url(//img.seabaycargo.com/s/bg-icon.png) 0 -43px no-repeat; }
#certify .swiper-button-next { right: 375px; width: 24px; height: 28px; background: url(//img.seabaycargo.com/s/bg-icon.png) -52px -43px no-repeat; }
.route { background: #fff; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.route .title_more { position: relative; height: 50px; line-height: 50px; padding: 0 8px; border-bottom: 1px dotted #E9E9E9; color: #333; border-radius: 2px 2px 0 0; font-size: 14px; }
.route .title_more li { float: left; }
.route .title_more li a { display: block; padding: 0 8px; color: #666; }
.route .title_more li a:after { content: ""; display: inline-block; height: 12px; width: 1px; margin-left: 15px; vertical-align: middle; background: #dadada; }
.route .title_more li a.cancel:after { background: none; }
.route .title_more li a.current { color: #4fb5e9; }
#tabs2_info { overflow: hidden; margin-bottom: 40px; padding: 15px 15px 0 15px; }
#tabs2_info .float_left { width: 282px; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; overflow: hidden; }
#tabs2_info .float_left div { padding: 0 14px; line-height: 1; border: 1px solid #eee; }
#tabs2_info .float_left div h3 { color: #5ab9ea; padding: 18px 0 18px 23px; background: url(//img.seabaycargo.com/s/bg-icon.png) -381px 16px no-repeat; }
#tabs2_info .float_left div p { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-bottom: 12px; }
#tabs2_info .float_left div p a:hover { color: #4fb5e9; }
#tabs2_info ul { width: 888px; overflow: hidden; }
#tabs2_info ul li { float: left; width: 280px; margin: 0 0 16px 16px; }
#tabs2_info ul li a { width: 280px; overflow: hidden; display: block; transition: all .5s; -webkit-transition: all .5s; -moz-transition: all .5s; -ms-transition: all .5s; -o-transition: all .5s; }
#tabs2_info ul li a:hover, #tabs2_info .float_left:hover { -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.13); -moz-box-shadow: 0 1px 10px rgba(0,0,0,.13); box-shadow: 0 1px 10px rgba(0,0,0,.13); /*-webkit-transform: translate3d(0,-4px,0);    transform: translate3d(0,-4px,0);*/ color: #4fb5e9; }
.route .title_more .float_right { font-size: 12px; font-size: 12px; position: absolute; right: 10px; top: 0; }
#tabs2_info ul li div { text-align: center; line-height: 1; border: 1px solid #eee; }
#tabs2_info ul li div h3 { width: 263px; margin: 0 auto; border-bottom: 1px solid #ebebeb; padding: 12px 0; }
#tabs2_info ul li div p { padding: 10px 0 9px 0; color: #666; font-size: 16px; text-align: center; }
.introduce { background: #fff; padding: 0px 0 40px; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.introduce:hover, .route:hover, .home-cheapie:hover, .news:hover, .encyclopedias:hover, .special_service:hover { box-shadow: 0 0 10px 0 rgb(236, 236, 236), 0 2px 4px 0 rgba(232,237,250,.5); }
.introduce ul { margin-right: -12px; height: 250px; }
.introduce li { float: left; width: 288px; padding-top: 150px; text-align: center; margin-right: 14px; margin-top: 15px; transition: all .5s linear; }
.introduce li:hover { margin-top: 5px; }
.bg_icon_01 { background: url(//img.seabaycargo.com/s/icon-b_01.jpg) top center no-repeat; }
.bg_icon_02 { background: url(//img.seabaycargo.com/s/icon-b_02.jpg) top center no-repeat; }
.bg_icon_03 { background: url(//img.seabaycargo.com/s/icon-b_03.jpg) top center no-repeat; }
.bg_icon_04 { background: url(//img.seabaycargo.com/s/icon-b_04.jpg) top center no-repeat; }
.introduce li h3 { margin-bottom: 10px; font-size: 20px; }
.introduce li p { color: #999; line-height: 24px; font-size: 12px; }
.news { margin-top: 40px; padding: 0 15px 15px 15px; background: #fff; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.news .mb20 { margin-bottom: 15px; }
.news_list .chunk_relative { height: 231px; overflow: hidden; }
.news_list { width: 382px; overflow: hidden; }
.news_list div a { display: block; }
.news_list div a:link, .news_list div a:visited, .news_list div a:active { color: #fff; }
.news_list div a:hover { color: #4fb5e9; }
.news_list div p { position: absolute; bottom: 0; left: 0; right: 0; background: url(//img.seabaycargo.com/s/bg-search.png) repeat; height: 30px; line-height: 30px; padding-left: 7px; }
.news_list ul { background: #fafafa; padding: 15px 10px 0 15px; }
.news_list ul li { padding-bottom: 12px; }
.news_list ul li span { display: block; background: #4fb5e9; color: #fff; margin-right: 10px; width: 64px; height: 20px; line-height: 20px; text-align: center; float: left; }
.news_list ul li a { display: block; width: 283px; float: left; height: 20px; line-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news_list ul li a:link, .news_list ul li a:visited, .news_list ul li a:active { color: #666; }
.news_list ul li a:hover { color: #4fb5e9; }
.news_details { width: 417px; height: 155px; background: #fafafa; padding: 25px 20px 0 20px; }
.c_details:hover .news_details, .news_list:hover ul { background: #f3f3f3; }
.news_details h3 { width: 402px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 20px; }
.news_details h3 span { display: block; float: left; width: 36px; height: 20px; line-height: 20px; text-align: center; background: #ff4343; border-radius: 3px; color: #fff; margin-right: 10px; font-size: 14px; margin-top: 4px; }
.news_details h3 span.b_yellow { background: #ffb148; }
.news_details p { word-break: break-all; height: 70px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; margin-top: 25px; color: #888; line-height: 25px; }
.mb20 { margin-bottom: 20px; }
.c_details:hover { color: #4fb5e9; }
.middle_banner { margin: 40px 0; }
.encyclopedias .title_more { }
.encyclopedias { padding: 0 15px 15px 15px; background: #fff; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.en_list { background: #fafafa; width: 270px; padding: 17px 0 8px 30px; }
.en_list li { margin-bottom: 12px; }
.en_list li a { display: block; width: 65px; height: 24px; line-height: 24px; padding-left: 35px; -webkit-box-shadow: 0 1px 7px #d5ecf9; -moz-box-shadow: 0 1px 7px #d5ecf9; box-shadow: 0 1px 7px #d5ecf9; }
.en_list li a.last { height: 55px; line-height: 1.8; padding-top: 5px; }
.en_list li a:hover { color: #4fb5e9; }
.en_list li a.icon_en_01 { background: url(//img.seabaycargo.com/s/bg-icon.png) -95px -41px no-repeat #fff; }
.en_list li a.icon_en_02 { background: url(//img.seabaycargo.com/s/bg-icon.png) -191px -40px no-repeat #fff; }
.en_list li a.icon_en_03 { background: url(//img.seabaycargo.com/s/bg-icon.png) -285px -40px no-repeat #fff; }
.en_list li a.icon_en_04 { background: url(//img.seabaycargo.com/s/bg-icon.png) 15px -77px no-repeat #fff; }
.en_list li a.icon_en_05 { background: url(//img.seabaycargo.com/s/bg-icon.png) -79px -77px no-repeat #fff; }
.en_list li a.icon_en_06 { background: url(//img.seabaycargo.com/s/bg-icon.png) -173px -77px no-repeat #fff; }
.en_list li a.icon_en_07 { background: url(//img.seabaycargo.com/s/bg-icon.png) -266px -77px no-repeat #fff; }
.en_list li a.icon_en_08 { background: url(//img.seabaycargo.com/s/bg-icon.png) -359px -77px no-repeat #fff; }
.en_list li a.icon_en_09 { background: url(//img.seabaycargo.com/s/bg-icon.png) 13px -105px no-repeat #fff; }
.en_list li a.icon_en_10 { background: url(//img.seabaycargo.com/s/bg-icon.png) -84px -105px no-repeat #fff; }
.en_list li a.icon_en_11 { background: url(//img.seabaycargo.com/s/bg-icon.png) -178px -105px no-repeat #fff; }
.en_list li a.icon_en_12 { background: url(//img.seabaycargo.com/s/bg-icon.png) -279px -105px no-repeat #fff; }
.en_list li a.icon_en_13 { background: url(//img.seabaycargo.com/s/bg-icon.png) -372px -105px no-repeat #fff; }
.en_list li a.icon_en_14 { background: url(//img.seabaycargo.com/s/bg-icon.png) 12px -132px no-repeat #fff; }
.en_list li a.icon_en_15 { background: url(//img.seabaycargo.com/s/bg-icon.png) -86px -130px no-repeat #fff; }
.en_list li a.icon_en_16 { background: url(//img.seabaycargo.com/s/bg-icon.png) -179px -133px no-repeat #fff; }
.en_list li a.icon_en_17 { background: url(//img.seabaycargo.com/s/bg-icon.png) -273px -132px no-repeat #fff; }
.en_list li a.icon_en_18 { background: url(//img.seabaycargo.com/s/bg-icon.png) -368px -132px no-repeat #fff; }
.en_list li a.icon_en_19 { background: url(//img.seabaycargo.com/s/bg-icon.png) 12px -158px no-repeat #fff; }
.en_list li a.icon_en_20 { background: url(//img.seabaycargo.com/s/bg-icon.png) -82px -155px no-repeat #fff; }
.en_list li a.icon_en_21 { background: url(//img.seabaycargo.com/s/bg-icon.png) -176px -153px no-repeat #fff; }
.font12 { font-size: 12px; }
.font18 { font-size: 18px; }
.pl36 { padding-left: 36px; }
.en_knowlege { margin-left: 15px; background: #fafafa; }
.en_knowlege ul { width: 300px; padding: 8px 20px 0 20px; }
.en_knowlege ul li { margin-bottom: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.en_knowlege ul span { padding: 2px 4px; background: #ffaf57; border-radius: 3px; color: #fff; margin-right: 6px; }
.en_knowlege ul li a:hover { color: #4fb5e9; }
.mb18 { margin-bottom: 18px; }
.special_info { background: #fafafa; }
.special_info p { position: absolute; bottom: 0; left: 0; right: 0; height: 32px; line-height: 32px; text-align: center; background: url(//img.seabaycargo.com/s/bg-search.png) repeat; }
.special_info a { display: block; }
.special_info a:link, .special_info a:visited, .special_info a:active { color: #fff; }
.special_info a:hover { color: #4fb5e9; }
.special_service { background: #fff; margin: 40px 0; padding: 57px 0 60px 0; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.special_service li { float: left; padding-top: 87px; text-align: center; width: 300px; color: #999; font-size: 12px; }
.special_service li.icon_s_01 { background: url(//img.seabaycargo.com/s/icon-s_01.jpg) top center no-repeat; }
.special_service li.icon_s_02 { background: url(//img.seabaycargo.com/s/icon-s_02.jpg) top center no-repeat; }
.special_service li.icon_s_03 { background: url(//img.seabaycargo.com/s/icon-s_03.jpg) top center no-repeat; }
.special_service li.icon_s_04 { background: url(//img.seabaycargo.com/s/icon-s_04.jpg) top center no-repeat; }
.special_service li h3 { font-size: 18px; color: #333; margin-bottom: 10px; }
.friendship_link { margin-bottom: -20px; background: #fff; border-top: 1px solid #eaeaea; box-shadow: 0px 0px 10px #eaeaea; }
.friendship_link ul { width: 1200px; margin: 0 auto; padding-bottom: 10px; line-height: 30px; }
.friendship_link h3 { font-size: 20px; position: relative; color: #353434; font-weight: 100; line-height: 60px; width: 1200px; margin: 0 auto; }
.friendship_link h3:after { content: ""; display: inline-block; width: 1100px; margin-left: 5px; height: 1px; border-bottom: 1px dotted #ddd; position: absolute; top: 38px; }
.friendship_link ul li { float: left; margin-right: 40px; }
.friendship_link ul li a { color: #666; font-size: 12px; }
.friendship_link ul li a:hover { color: #4fb5e9; }


.shipping-wrap {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.shipping-title-shell {
    background-image: url('https://img.seabaycargo.com/s-en/Sea_Freight_BG.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 40px 0;
}

.shipping-title {
}

    .shipping-title h1 {
        font-size: 72px;
        font-weight: bold;
    }

    .shipping-title hr {
        border: none;
        border-bottom: 1px solid #FFFFFF;
        margin-bottom: 20px;
    }

    .shipping-title p {
        font-size: 20px;
    }


.sea-freight-route{
    display:flex;
    justify-content:center;
    margin-top:60px;
}
    .sea-freight-route .sfr-arrow {
        font-size: 50px;
        color: var(--color-main);
        line-height: 58px;
        margin: 0 70px;
    }
    .sea-freight-route .sfr-city {
        text-align: center;
    }
    .sea-freight-route .sfr-city h2 {
        font-size: 40px;
        color: var(--color-main);
        font-weight:bold;
    }
    .sea-freight-route .sfr-city p {
        font-size: 20px;
        color: #399AD3;
    }

.sea-freight-price {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
    .sea-freight-price .sfp-item {
        text-align: center;
        margin: 0 50px;
    }
    .sea-freight-price .sfp-i-ico {
        height:80px;
        width:200px;
        display:flex;
        align-items:center;
        justify-content:center;
    }
        .sea-freight-price .sfp-i-ico .i-20GP {
            height: 70px;
        }
        .sea-freight-price .sfp-i-ico .i-40GP {
            height: 80px;
        }
        .sea-freight-price .sfp-i-ico .i-40HC {
            height: 100px;
        }
    .sea-freight-price .sfp-i-type {
        font-size: 32px;
        color: var(--color-main);
    }
    .sea-freight-price .sfp-i-money {
        font-size: 28px;
        font-weight: bold;
        background: #F3F8FA;
        color: #399AD3;
        padding:10px 0;
        margin-top:10px;
    }

.sea-freight-note {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
}
.seabay-table th {
    border-top: 1px solid #D7D7D7;
    background: #F3F8FA;
    text-align: center;
    padding: 16px 0;
    color: var(--color-main);
}
.seabay-table td {
    text-align: center;
}
.seabay-table tr {
    border-bottom: 1px solid #D7D7D7;
}
.seabay-table .text{
    font-weight:bold;
}
.seabay-form {
    border: 1px solid #00628C;
    padding: 25px;
    max-width:700px;
    margin: 27px auto 20px;
}
    .seabay-form .tips {
        color: #FF0000;
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        display: none;
        order: 1;
    }
.success_div {
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
}

#fcl-detail-box .need h3 {
    color: #00628C;
}

.title-left {text-align:left;}
.pcl-list-foot-menu{margin-top:30px;}
.pcl-list-foot-menu .pcl-list-foot-item {
    width: 41%;
    display: inline-block;
    background-color: #00628c;
    color: #ffffff;
    padding: 30px 4%;
}
    .pcl-list-foot-menu .pcl-list-foot-item div {
        display:inline-block;
        vertical-align:middle;
    }
    .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-left {
        padding:20px 30px;
        width: 20%;
        text-align:center;
    }
    .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-left img {
        width:100%;
    }
    .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-right {
        width:66%;
    }
        .pcl-list-foot-menu .pcl-list-foot-item a {
            color: #ffffff;
            font-size: 26px;
            font-weight: bold;
            text-decoration: underline;
        }
.pcl-list-foot-item-right-dec{
    margin-top:20px;
    font-size:14px;
}

.pcl-font-c {
    color: #399AD3;
    font-weight: bold;
    font-size: 16px;
}
.pcl-a-btn {
    color: #00628c;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
}
.freights_list th { background-color: #10749F; font-weight: bold; }
.pcl-pc-show{
    display:unset;
}

.pcl-phone-th-show {
    display: none;
}
.pcl-phone-show {
    display: none;
}
#content{
    padding-top:35px;
}
.home-title { margin-top: 0px; font-size: 26px; }

.unsuccess h3 { margin-bottom :10px; font-size: 26px; font-weight: bold; }
#end-port-autocomplete { 
    left: 490px;
    width: 41%!important;
    overflow-y: auto;
    max-height: 320px;
}
/*
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    PC样式 结束
*/
/*
    移动端响应 开始
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
*/
/* 手机屏幕（小于等于 768px） */
@media screen and (max-width: 767px) { .ShipCompanyCode {
        width: 55%
    }

    .fcl-search .search .import-city { width: auto; }

    .word-code.ov > img {
        display: none;
    }

    .fcl-search {
        box-shadow: none;
    }

    .en-fcl-list-body #content {
        padding-top: 0px;
    }

    .en-fcl-list-body #tabs_info {
        padding: 20px;
        height: auto !important;
    }

    .en-fcl-list-body #fcl-box .airlift_input {
        float: none;
    }

    #fcl-box .sea_p {
        width: 100% !important;
        box-sizing: border-box;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        height: 40px;
        line-height: 40px;
    }

        #fcl-box .sea_p #end-port {
            position: static;
            flex: 1;
        }

        #fcl-box .sea_p #input_ajax {
            flex: 1;
        }

        #fcl-box .sea_p > img {
            margin-top: 0;
        }

    .initial_info .sea_p .label {
        min-width: 50px;
    }
    .fcl-search .search .en-click-search {
        width: 100% !important;
    }

    /*目的港选择*/
    .search-port-li {
        min-width: 90vw;
        box-shadow: 0 20px 40px 0px rgba(0,0,0,0.2);
    }

        .search-port-li .search-li-bd .tab-li {
            height: 44px;
            overflow: auto;
        }

            .search-port-li .search-li-bd .tab-li .f-clearfix {
                height: 40px;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
            }

        .search-port-li .search-li-bd .tab-cell-li {
            padding-left: 0;
        }

        .search-port-li .search-li-bd .tab-cell .tab-cell-item li a {
            width: auto;
            padding: 8px 10px;
        }

        .search-port-li .search-li-bd .tab-cell .tab-cell-item li:hover a {
            width: auto;
            font-weight: normal;
        }

    .freights_list-shell {
        overflow: auto;
    }

        .freights_list-shell .freights_list {
            width: 800px;
        }

    .split {
        padding-left: 10px;
        padding-right: 10px;
    }




    /* /shipping-from-china/detail/ */
    .industry_news_list {
        padding-top: 0px;
    }

    .width900 {
        margin-top: 0;
    }

        .width900.float_left {
            float: none;
        }


    .div_form {
        width: auto;
        height: auto;
        padding-bottom: 20px;
    }

        .div_form .div_form_two section div {
            width: auto;
        }

        .div_form aside input {
            margin: 10px 0;
            height: 34px;
            width: 100%;
        }

        .div_form .div_form_two p {
            line-height: 34px;
            height: 34px;
            display: flex;
            margin-bottom: 10px;
        }

        .div_form .div_form_two section div {
            display: flex;
        }

        .div_form .div_form_two span {
            padding-right: 6px;
        }

    .seNavht {
        width: auto;
    }

    #fcl-detail-box .need .need_next {
        width: auto;
    }

    .industry_news_list .float_right {
        float: none;
    }

    .xi_qr.txt_center.b-eb {
        max-width: 260px;
        margin: 0 auto;
    }

    .scrollview-shell {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

        .scrollview-shell .table-box {
            width: 800px;
        }

    .table-box .model_small {
        top: 34px !important;
    }

    .table-box #triangle2-up {
        transform: rotate(180deg);
        bottom: 25px;
    }

    #freight-search-port-list-box .search-port-li {
        max-width: 100%;
        margin-top: 40px;
    }

    #freight-searchbox-tabs {
        float: none;
        flex-direction:column;
    }

        #freight-searchbox-tabs .detail_a {
            width: 100%;
            height: 40px;
            line-height: 40px;
        }

    #tabs_info {
        height: auto;
        margin-top: 0px;
    }

    .en-fcl-detail .details_title {
        height: auto;
        padding-top: 20px !important;
    }

    .detail_price {
        display: flex;
    }

        .detail_price .detail_l_r {
            margin: 0 10px;
        }

        .detail_price .img7_5 {
            height: 50px;
        }

    .freights_list {
        display: block;
    }

        .freights_list #list-c-box {
            display: block;
        }

        .freights_list thead {
            display: block;
        }

            .freights_list thead tr {
                display: flex;
            }

            .freights_list thead th {
                flex: 1;
                background-color: #ffffff;
                border-top: 1px solid #E9F2F7;
                border-bottom: 1px solid #E9F2F7;
            }
        .freights_list th a {
            color: #10749F;
        }
        .freights_list tbody tr {
            display: flex;
            flex-wrap: wrap;
        }

            .freights_list tbody tr td {
                display: block;
                width: 33.333%;
                height: auto;
                margin: 10px 0;
            }

                .freights_list tbody tr td[data-label]::before {
                    content: attr(data-label);
                    color: #999;
                    display: block;
                    font-size: 14px;
                    font-weight: normal;
                }

        .freights_list .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .freights_list .mobile-hide {
            display: none;
        }

  /*      .freights_list td a.detail::after {
            content: ' »';
        }*/

    #fcl-detail-pricelist-box {
        margin-top: 20px !important;
    }

        #fcl-detail-pricelist-box .FCL-list-shell {
            width: auto;
            margin-left: -10px;
            margin-right: -10px;
        }
    .det-list-body {
        padding: 0 20px;
    }
    .shipping-title-shell {
        /*display: none;*/
        background: none;
        color: #00628c;
    }
    .shipping-wrap h1 {
        font-size:32px;
    }
    .shipping-title hr {
        border-bottom: 1px solid #00628c;
        margin-bottom:5px;
    }
    .shipping-title-shell {
        padding:10px 0;
    }

    .shipping-wrap p {
        font-size: 13px;
    }
    
    .sea-freight-route {
        margin-top: 34px;
    }
        .sea-freight-route .sfr-city h2 {
            font-size: 22px;
        }
        .sea-freight-route .sfr-city p {
            font-size: 14px;
        }
        .sea-freight-route .sfr-arrow {
            margin: 0 20px;
        }
    .sea-freight-price {
        margin: 0 auto;
        margin-top: 20px;
        flex-direction:column;
    }
        .sea-freight-price .sfp-item {
            display: flex;
            margin: 0 20px;
            align-items: center;
            justify-content: center;
        }
        .sea-freight-price .sfp-i-type {
            order: -1;
            font-size: 20px;
        }
        .sea-freight-price .sfp-i-money {
            font-size: 20px;
            width: 30%;
        }
        .sea-freight-price .sfp-i-ico {
            transform: scale(0.8);
            width: 165px;
        }
            .sea-freight-price .sfp-i-ico .i-20GP {
                margin-left: -80px;
            }
    .sea-freight-note {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .seabay-table tr {
        box-shadow: none;
        border-radius: 0;
        border: 0;
        padding: 0;
        border-top: 1px solid #D7D7D7;
    }
    .seabay-table td {
        justify-content: flex-start;
        padding: 0;
        height: 60px;
        align-items: center;
        border-bottom: 1px solid #D7D7D7;
    }
        .seabay-table td:before {
            width: 120px;
            background: #F3F8FA;
            height: 60px;
            padding-left: 10px;
            color: #00628C;
            font-weight:bold;
            margin-right:10px;
        }
    .seabay-table .text {
        margin-right: 6px;
    }
    .seabay-table .text-box{
        text-align:left;
    }
    .seabay-form {
        padding: 0;
        border: none;
    }
        .seabay-form .tips {
            order: initial;
            margin-top: -10px;
            margin-bottom: 15px;
        }


        .success_div > div {
            height: auto;
            max-width: 100%;
            left: 0;
            right: 0;
            margin: auto;
        }
        .success_div ._p {
            position: static;
            width: auto;
        }


    .pcl-list-foot-menu {
        margin-top: 10px;
    }

    .pcl-list-foot-menu .pcl-list-foot-item {
        width: 92%;
        margin-top: 20px;
        position:relative;
    }
    .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-left {
        position: absolute;
        top: 3px;
        width: 14%;
    }
    .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-left img {
        width: 100%;
    }
        .pcl-list-foot-menu .pcl-list-foot-item .pcl-list-foot-item-right {
            width: 100%;
        }
    .pcl-list-foot-item-right-title {
        width: 65%;
        padding-left: 30%;
    }
    .pcl-list-foot-item-right-dec {
        padding-left:5%;
        width: 80%;
        margin-top:7%;
        font-size:14px;
    }
    .pcl-pc-show {
        display: none !important;
    }
    .pcl-phone-th-show {
        display: unset;
    }
    .pcl-phone-show {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .pcl-phone-flex {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
        .pcl-width-25 {
            width: 25% !important;
        }
    .pcl-width-50 {
        width:50% !important;
    }
    .pcl-width-100 {
        width: 100% !important;
    }
    .pcl-phone-show p {
        margin-left: 5px;
    }
    .pcl-phone-flex span {
        margin-left: 5px;
    }
    .pcl-a-btn {
        padding: 5px 60px;
        border: 1px solid #00628c;
        border-radius:6px;
        font-size:16px;
        font-weight:unset;
        text-decoration:unset;
    }
    .freights_list tr {
        background-color: #E9F2F7;
        margin:10px;
        border-bottom:unset;
    }
    .unsuccess{width:unset;background-color:#ffffff !important;}
    .home-iconSort {
        display: inline-block;
        height: 20px;
        width: 25px;
        vertical-align: -2px;
        margin-left: 5px;
        float: none;
        background: url(//img.seabaycargo.com/s-en/sarrowblue.svg) -6px 0 no-repeat;
        background-size: 100%;
    }
    .split span.text:first-child{
        display:none;
    }
    .split{margin:0;}
    .home-title{margin-top:0px;}
    #end-port-autocomplete { 
        left:0;

    }
}


/*
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    ###########################################################
    移动端响应 结束
*/

