* {
    margin: 0;
    padding: 0;
}

/* 引入字体包 */
@font-face {
    font-family: 'MiSans';
    src: url('./MiSans-Medium.ttf');
}

body{
    background:#fff;
}

body,
input,
input::placeholder {
    font-family: 'MiSans';
}

/* 价格查询主体 */
.search-box-container {
    width: 1200px;
    margin: 0 auto;
    margin-top: -114px;
    margin-bottom: 12px;
    box-shadow: 0 14px 14px 0 rgba(22, 23, 24, .3);
    position: relative;
    z-index: 10;
}

@media (max-width:780px){
    .search-box-container{
        width: 100%;
        margin-top: 16px;
        margin-bottom: 8px;
        box-shadow: 0 14px 14px 0 rgba(22, 23, 24, .0);
    }
}

/* 类型切换选择 */
.search-box-container .tab-naver {
    height: 50px;
    width: 820px;
    overflow: hidden;
}

@media (max-width:780px){
    .search-box-container .tab-naver{
        width: 100%;
        height: auto;
    }
}


.search-box-container .tab-naver .tab-inner {
    display: flex;
    width: 534px;
    height: 100%;
    background: url(../images/image-1.png) 50% no-repeat;
    background-size: 100% 100%;
    background: transparent;
    transform: translateZ(0);
    border-radius: 8px 8px 0 0;
}

@media (max-width:780px){
    .search-box-container .tab-naver .tab-inner {
        width: 100%;
        border-radius: 0;
        background: transparent;
    }
}

.search-box-container .tab-naver .tab-inner .item {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex: 1; */
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all .6s;
    z-index: 9;
}

@media (max-width:780px){
    .search-box-container .tab-naver .tab-inner .item  {
        width: 100%;
        justify-content: flex-start;
        font-size: 20px;
        color: #999;
    }
}

.search-box-container .tab-naver .tab-inner .item.active {
    color: #034996;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px;
    box-shadow: 0 14px 14px 0 rgba(22, 23, 24, .3);
}

@media (max-width:780px){
    .search-box-container .tab-naver .tab-inner .item.active {
        color: #034996;
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 0;
        box-shadow: 0 0 0 0 rgba(22, 23, 24, .0);
    }
}

.search-box-container .tab-naver .item__presentation-slider {
    background-color: #fff;
    color: #161718;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    transform-origin: 0 0;
    transition: transform .6s;
    z-index: 1;
}
@media (max-width:780px){
    .search-box-container .tab-naver .item__presentation-slider {
        display: none;
    }
}

.search-box-container .tab-naver .item:first-child.active~.item__presentation-slider {
    transform: translateX(0) scaleX(.5);
}

.search-box-container .tab-naver .item:nth-child(2).active~.item__presentation-slider {
    transform: translateX(50%) scaleX(.5);
}

.search-box-container .tab-naver .item:nth-child(3).active~.item__presentation-slider {
    transform: translateX(50%) scaleX(.5);
}

.search-box-container .tab-naver .tab-inner .start-slider {
    background: url(../images/image-2.png) 50% no-repeat;
    background-size: 100% 100%;
}

.search-box-container .tab-naver .tab-inner .end-slider {
    background: url(../images/image-3.png) 50% no-repeat;
    background-size: 100% 100%;
}

.search-box-container .tab-content {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 20px 20px 0 rgba(22, 23, 24, .1);
    box-sizing: border-box;
    height: 100px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:780px){
    .search-box-container .tab-content {
        background: #fff;
        border-radius: 0;
        box-shadow: 0 20px 20px 0 rgba(22, 23, 24, .0);
        box-sizing: border-box;
        height: auto;
        padding: 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

.search-box-container .tab-content .tab-content-specialline,
.search-box-container .tab-content .tab-content-packet {
    width: 100%;
    height: 60px;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline,
    .search-box-container .tab-content .tab-content-packet {
        width: 100%;
        height: auto;
        display: none;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

.search-box-container .tab-content .tab-content-specialline.active,
.search-box-container .tab-content .tab-content-packet.active {
    display: flex;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription {
    height: 70px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    width: 100px;
    padding: 7px 13px;
    box-sizing: border-box;
    transition: all .3s ease-out;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba{
    display:none;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size {
    height: 70px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    width: 100px;
    padding: 7px 13px;
    box-sizing: border-box;
    transition: all .3s ease-out;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription {
        height: auto;
        border: 0 solid #e3e3e3;
        border-radius: 0;
        width: calc(50% - 12px);
        padding: 0 0;
        box-sizing: border-box;
        transition: all .3s ease-out;
        cursor: pointer;
        position: relative;
        margin-bottom: 12px;
        margin-right: 12px;
    }

    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-weight,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size {
        height: auto;
        border: 0 solid #e3e3e3;
        border-radius: 0;
        width: calc(50% - 12px);
        padding: 0 0;
        box-sizing: border-box;
        transition: all .3s ease-out;
        cursor: pointer;
        position: relative;
        margin-bottom: 12px;
        margin-right: 12px;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country {
    width: 250px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country {
    width: 100px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba {
    width: 150px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription {
    width: 200px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good {
    width: 250px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight {
    width: 140px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-type {
    width: 364px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-size {
    width: 286px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country {
        width: calc(50% - 12px);
    }
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba {
        width: calc(50% - 12px);
    }
    
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription {
        width: calc(50% - 12px);
    }
    
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good {
       width: calc(50% - 12px);
    }

    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country {
        width: calc(50% - 12px);
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-weight {
        width: calc(50% - 12px);
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type{
        width: calc(50% - 12px);
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size {
        width: calc(100% - 12px);
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-label {
    display: inline-block;
    height: 22px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #a2a2a3;
    line-height: 22px;
    text-shadow: 0 20px 20px rgba(22, 23, 24, .1);
    margin-bottom: 0;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-label,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-label,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-label,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-label,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-label {
    display: inline-block;
    height: 22px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #a2a2a3;
    line-height: 22px;
    text-shadow: 0 20px 20px rgba(22, 23, 24, .1);
    margin-bottom: 0;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-label,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-label,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-label,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-label,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-label,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-label {
        display: inline-block;
        height:24px;
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        color: #333;
        line-height: 24px;
        text-shadow: 0 0 0 rgba(22, 23, 24, .0);
        margin-bottom: 0;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-label,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-label,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-label,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-label,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-label {
        display: inline-block;
        height:24px;
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        color: #333;
        line-height: 24px;
        text-shadow: 0 0 0 rgba(22, 23, 24, .0);
        margin-bottom: 0;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-content,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-label {
    border-radius: 4px 0 0 4px;
    width: 38px;
    height: 24px;
    text-align: center;
    background: #f1f3f5;
    line-height: 24px;
    font-size: 14px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item {
        width: calc(33% - 12px);
        margin-right: 12px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-label {
        width: 32px;
        border-radius: 0;
        height: 32px;
        text-align: left;
        background: transparent;
        line-height: 32px;
        font-size: 16px;
    }
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-content {
    width: 42px;
    height: 22px;
    flex: 1;
    font-size: 12px;
    color: #5b5c5d;
    border: 1px solid #e3e3e3;
    border-radius: 0 4px 4px 0;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-content {
        height: 24px;
        flex: 1;
        font-size: 16px;
        color: #5b5c5d;
        border: 0 solid #333;
        border-radius: 0;
       
    }
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-content input {
    width: 100%;
    line-height: 22px;
    font-size: 14px;
    border: 0;
    box-shadow: none;
    padding: 0;
    outline: 0;
    border-radius: 0 4px 4px 0;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-item .tab-content-packet-size-content-item-content input {
        width: 100%;
        line-height: 30px;
        font-size: 16px;
        border: 1px solid #000;
        box-shadow: none;
        padding: 0;
        outline: 0;
        border-radius: 8px;
         box-sizing: border-box;
        padding-left: 6px;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content .tab-content-specialline-origin-content-text,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content .tab-content-specialline-country-content-text,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content .tab-content-specialline-fba-content-text,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content .tab-content-specialline-mba-content-text,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content .tab-content-specialline-good-content-text,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content .tab-content-specialline-prescription-content-text {
    width: 100%;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content .tab-content-packet-origin-content-text,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content .tab-content-packet-country-content-text,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-content .tab-content-packet-weight-content-text,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content .tab-content-packet-type-content-text,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-text {
    width: 100%;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content .tab-content-specialline-good-content-text {
    display: inline-block;
    width: 220px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content .tab-content-specialline-prescription-content-text {
    display: inline-block;
    width: 150px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content .tab-content-specialline-origin-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content .tab-content-specialline-country-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content .tab-content-specialline-fba-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content .tab-content-specialline-mba-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content .tab-content-specialline-good-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content .tab-content-specialline-prescription-content-text input {
    width: 100%;
    font-size: 16px;
    border: 0;
    box-shadow: none;
    padding: 0;
    outline: 0;
    color: #161718;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content .tab-content-packet-origin-content-text input,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content .tab-content-packet-country-content-text input,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-content .tab-content-packet-weight-content-text input,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content .tab-content-packet-type-content-text input,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-text input {
    width: 100%;
    font-size: 16px;
    border: 0;
    box-shadow: none;
    padding: 0;
    outline: 0;
    color: #161718;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content .tab-content-specialline-origin-content-text input,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content .tab-content-specialline-country-content-text input,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content .tab-content-specialline-fba-content-text input,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content .tab-content-specialline-mba-content-text input,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content .tab-content-specialline-good-content-text input,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content .tab-content-specialline-prescription-content-text input {
        width: 100%;
        box-sizing: border-box;
        line-height: 30px;
        font-size: 16px;
        border: 1px solid #333;
        box-shadow: none;
        padding: 0 6px;
        outline: 0;
        color: #333;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content .tab-content-packet-origin-content-text input,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content .tab-content-packet-country-content-text input,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-content .tab-content-packet-weight-content-text input,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content .tab-content-packet-type-content-text input,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-text input {
        width: 100%;
        box-sizing: border-box;
        line-height: 30px;
        font-size: 16px;
        border: 1px solid #333;
        box-shadow: none;
        padding: 0 6px;
        outline: 0;
        color: #333;
    }   
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content .tab-content-specialline-origin-content-text input::placeholder,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content .tab-content-specialline-country-content-text input::placeholder,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content .tab-content-specialline-fba-content-text input::placeholder,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content .tab-content-specialline-mba-content-text input::placeholder,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content .tab-content-specialline-good-content-text input::placeholder,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content .tab-content-specialline-prescription-content-text input::placeholder {
    color: #606266;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content .tab-content-packet-origin-content-text input::placeholder,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content .tab-content-packet-country-content-text input::placeholder,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-weight .tab-content-packet-weight-content .tab-content-packet-weight-content-text input::placeholder,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content .tab-content-packet-type-content-text input::placeholder,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-size .tab-content-packet-size-content .tab-content-packet-size-content-text input::placeholder {
    color: #606266;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content p,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content p,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content p,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content p,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content p,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content p{
    line-height: 1;
    margin: 0;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content i,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content i,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content i,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content i,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content i,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content i {
    display: block;
    width: 0;
    height: 0;
    border: 6px solid #000;
    border-radius: 4px;
    border-color: #000 transparent transparent transparent;
    transition: all .3s;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content p,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content p,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content p{
    line-height: 1;
    margin: 0;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content i,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content i,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content i {
    display: block;
    width: 0;
    height: 0;
    border: 6px solid #000;
    border-radius: 4px;
    border-color: #000 transparent transparent transparent;
    transition: all .3s;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content i,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content i,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content i,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content i,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content i,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content i {
        display: block;
        width: 0;
        height: 0;
        border: 6px solid #000;
        border-radius: 4px;
        border-color: #000 transparent transparent transparent;
        transition: all .3s;
        flex-shrink: 0;
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 6px;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content i,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content i,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content i {
        display: block;
        width: 0;
        height: 0;
        border: 6px solid #000;
        border-radius: 4px;
        border-color: #000 transparent transparent transparent;
        transition: all .3s;
        flex-shrink: 0;
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 6px;
    }    
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-content i.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-content i.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-content i.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-content i.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-content i.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-content i.active {
    transform: rotate(180deg);
    margin-top: -4px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-content i.active,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-content i.active,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-content i.active {
    transform: rotate(180deg);
    margin-top: -4px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model {
    width: 556px;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    transform: scale(0);
    transform-origin: top left;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
    transition: all .3s ease-out;
}


.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model {
    width: 556px;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    transform: scale(0);
    transform-origin: top left;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
    transition: all .3s ease-out;
}


@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model {
        width: calc(100vw - 80px);
        position: absolute;
        top: 68px;
        left: 0;
        background: #fff;
        border-radius: 12px;
        transform: scale(0);
        transform-origin: top left;
        box-shadow: 0 10px 12px 0 rgba(0, 0, 0, .4);
        transition: all .3s ease-out;
        z-index: 10;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model {
        width: calc(100vw - 80px);
        position: absolute;
        top: 68px;
        left: 0;
        background: #fff;
        border-radius: 12px;
        transform: scale(0);
        transform-origin: top left;
        box-shadow: 0 10px 12px 0 rgba(0, 0, 0, .4);
        transition: all .3s ease-out;
        z-index: 10;
    } 
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model {
        left: auto;
        transform-origin: top right;
        right:0!important;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model{
        left: auto;
        transform-origin: top right;
        right:0!important;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-origin-model-header,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-country-model-header,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-fba-model-header,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-mba-model-header {
    width: calc(100% - 64px);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-origin-model-header,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-country-model-header {
    width: calc(100% - 64px);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-origin-model-header,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-country-model-header,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-fba-model-header,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-mba-model-header {
        width: calc(100% - 34px);
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        border-bottom: 1px solid #f0f0f0;
        font-size: 12px;
        overflow-x: auto;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-origin-model-header,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-country-model-header {
        width: calc(100% - 34px);
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        border-bottom: 1px solid #f0f0f0;
        font-size: 12px;
        overflow-x: auto;
    }    
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-origin-model-header .item,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-country-model-header .item,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-fba-model-header .item,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-mba-model-header .item {
    padding: 12px 4px;
    color: #9a9da4;
    cursor: pointer;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-origin-model-header .item,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-country-model-header .item {
    padding: 12px 4px;
    color: #9a9da4;
    cursor: pointer;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-origin-model-header .item,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-country-model-header .item,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-fba-model-header .item,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-mba-model-header .item {
        padding: 10px 4px;
        color: #9a9da4;
        cursor: pointer;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-origin-model-header .item,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-country-model-header .item {
        padding: 10px 4px;
        color: #9a9da4;
        cursor: pointer;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-origin-model-header .item.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-country-model-header .item.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-fba-model-header .item.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-mba-model-header .item.active {
    color: #161718;
    border-bottom: 1px solid #161718;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-origin-model-header .item.active,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-country-model-header .item.active {
    color: #161718;
    border-bottom: 1px solid #161718;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content {
    width: 100%;
    max-height: 267px;
    box-sizing: border-box;
    position: relative;
    padding: 24px 0 0 32px;
    overflow: auto;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content {
    width: 100%;
    max-height: 267px;
    box-sizing: border-box;
    position: relative;
    padding: 24px 0 0 32px;
    overflow: auto;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content {
        width: 100%;
        max-height: 267px;
        box-sizing: border-box;
        position: relative;
        padding: 13px 0 0 18px;
        overflow: auto;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group {
    font-size: 14px;
    display: flex;
    margin-bottom: 24px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group {
    font-size: 14px;
    display: flex;
    margin-bottom: 24px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group,
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group {
        font-size: 12px;
        display: flex;
        margin-bottom: 16px;
    }
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group {
        font-size: 12px;
        display: flex;
        margin-bottom: 16px;
    }
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group .title,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group .title,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group .title,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group .title {
    font-weight: 600;
    color: #606266;
    line-height: 1.2;
    width: 28px;
    line-height: 28px;
    height: 28px;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 14px;
    width: 34px;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .title,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .title {
    font-weight: 600;
    color: #606266;
    line-height: 1.2;
    width: 28px;
    line-height: 28px;
    height: 28px;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 14px;
    width: 34px;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .title,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .title {
        font-weight: 600;
        color: #606266;
        line-height: 1.2;
        width: 28px;
        line-height: 24px;
        height: 24px;
        margin-right: 10px;
        flex-shrink: 0;
        font-size: 12px;
    }    
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group .city-list,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group .country-list,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group .fba-list,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group .mba-list {
    flex: 1;
    margin: -12px 0 0 -12px;
    display: flex;
    flex-wrap: wrap;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .city-list,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .country-list {
    flex: 1;
    margin: -12px 0 0 -12px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .city-list,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .country-list {
        flex: 1;
        margin: -12px 0 0 -12px;
        display: flex;
        flex-wrap: wrap;
    }    
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group .city-list li,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group .country-list li,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group .fba-list li,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group .mba-list li {
    width: 80px;
    text-align: center;
    line-height: 28px;
    height: 28px;
    border-radius: 14px;
    margin: 12px 0 0 12px;
    background-color: #f5f5f5;
    color: #666;
    transition: all .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .city-list li,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .country-list li {
    width: 80px;
    text-align: center;
    line-height: 28px;
    height: 28px;
    border-radius: 14px;
    margin: 12px 0 0 12px;
    background-color: #f5f5f5;
    color: #666;
    transition: all .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .city-list li,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .country-list li {
        width: 80px;
        text-align: center;
        line-height: 28px;
        height: 28px;
        border-radius: 14px;
        margin: 12px 0 0 12px;
        background-color: #f5f5f5;
        color: #666;
        transition: all .3s;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }    
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-origin .tab-content-specialline-origin-model .tab-content-specialline-item-origin-model-content .tab-content-specialline-item-origin-model-content-group .city-list li.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-country .tab-content-specialline-country-model .tab-content-specialline-item-country-model-content .tab-content-specialline-item-country-model-content-group .country-list li.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-fba .tab-content-specialline-fba-model .tab-content-specialline-item-fba-model-content .tab-content-specialline-item-fba-model-content-group .fba-list li.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-mba .tab-content-specialline-mba-model .tab-content-specialline-item-mba-model-content .tab-content-specialline-item-mba-model-content-group .mba-list li.active {
    background-color: #034996;
    color: #fff;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-origin .tab-content-packet-origin-model .tab-content-packet-item-origin-model-content .tab-content-packet-item-origin-model-content-group .city-list li.active,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-country .tab-content-packet-country-model .tab-content-packet-item-country-model-content .tab-content-packet-item-country-model-content-group .country-list li.active {
     background-color: #034996;
    color: #fff;
}


.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model {
    width: 380px;
    box-sizing: border-box;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transform: scale(0);
    transform-origin: top left;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
    transition: all .3s ease-out;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-name,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-type {
    width: 100%;
    margin-bottom: 12px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-name .tab-content-specialline-good-model-name-label,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-type .tab-content-specialline-good-model-type-label {
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #161718;
    line-height: 22px;
    margin-bottom: 6px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-name .tab-content-specialline-good-model-name-content {
    border-radius: 8px;
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #e3e3e3;
    box-sizing: border-box;
    font-size: 14px;
    padding-left: 12px;
    display: flex;
    align-items: center;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-type .tab-content-specialline-good-model-type-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content input {
    width: calc(100% - 120px);
    height: 100%;
    line-height: 100%;
    border: 0;
    outline: 0;
    font-weight: 400;
    color: #161718;
    border-radius: 8px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-name .tab-content-specialline-good-model-name-content input {
    width: 100%;
    height: 100%;
    line-height: 100%;
    border: 0;
    outline: 0;
    font-weight: 400;
    color: #161718;
    border-radius: 8px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content .tab-content-specialline-good-model-vw-content-type {
    width: 120px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    justify-content: flex-start;
    background: #f1f3f5;
    margin-right: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #5b5c5d;
    line-height: 22px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content .tab-content-specialline-good-model-vw-content-type .tab-content-specialline-good-model-vw-content-type-weight,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content .tab-content-specialline-good-model-vw-content-type .tab-content-specialline-good-model-vw-content-type-volume {
    display: inline-block;
    width: 60px;
    border-radius: 6px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content .tab-content-specialline-good-model-vw-content-type .tab-content-specialline-good-model-vw-content-type-weight.active,
.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-vw .tab-content-specialline-good-model-vw-content .tab-content-specialline-good-model-vw-content-type .tab-content-specialline-good-model-vw-content-type-volume.active {
    background: #034996;
    color: #fff;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-type .tab-content-specialline-good-model-type-content .tab-content-specialline-good-model-type-content-item {
    height: 28px;
    line-height: 28px;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 400;
    color: #5b5c5d;
    margin-right: 6px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-type .tab-content-specialline-good-model-type-content .tab-content-specialline-good-model-type-content-item.active {
    color: #034996;
    background: #fff;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-good .tab-content-specialline-good-model .tab-content-specialline-good-model-button {
    width: 100%;
    height: 40px;
    background: #034996;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
    margin-top: 24px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model {
    width: 380px;
    box-sizing: border-box;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transform: scale(0);
    transform-origin: top left;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
    transition: all .3s ease-out;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-item {
    width: 100%;
    margin-bottom: 12px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-item .tab-content-specialline-prescription-model-item-label {
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #161718;
    line-height: 22px;
    margin-bottom: 6px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-item .tab-content-specialline-prescription-model-item-content {
    display: flex;
    justify-content: flex-start;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-item .tab-content-specialline-prescription-model-item-content .tab-content-specialline-prescription-model-item-content-item {
    display: flex;
    justify-content: center;
    font-size: 14px;
    height: 60px;
    width: 78px;
    height: 28px;
    background: #f1f3f5;
    border-radius: 14px;
    margin-right: 6px;
    text-align: center;
    line-height: 28px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-item .tab-content-specialline-prescription-model-item-content .tab-content-specialline-prescription-model-item-content-item.active {
    background: #034996;
    color: #fff;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-prescription .tab-content-specialline-prescription-model .tab-content-specialline-prescription-model-button {
    width: 100%;
    height: 40px;
    background: #034996;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
    margin-top: 24px;
}

.search-box-container .tab-content .tab-content-specialline .tab-content-specialline-button,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-button {
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all .3s;
    border-radius: 8px;
    font-weight: 700;
    background-color: #034996;
    color: #fff;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-specialline .tab-content-specialline-button,
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-button {
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all .3s;
        border-radius: 8px;
        font-weight: 700;
        background-color: #034996;
        color: #fff;
    }    
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model {
    width: 426px;
    height: 100px;
    box-sizing: border-box;
    position: absolute;
    top: 68px;
    left: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transform: scale(0);
    transform-origin: top left;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
    transition: all .3s ease-out;
}

@media (max-width:780px){
    .search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model {
        width: calc(100vw - 80px);
        height: auto;
        background: #fff;
        box-sizing: border-box;
        position: absolute;
        top: 68px;
        left: auto;
        right: 0!important;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        transform: scale(0);
        transform-origin: top left;
        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .16);
        transition: all .3s ease-out;
        z-index: 10;
    }    
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model .tab-content-packet-type-model-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model .tab-content-packet-type-model-content .tab-content-packet-type-model-content-item {
    width: calc(33% - 14px);
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    height: 28px;
    border-radius: 4px;
    margin-right: 12px;
    margin-bottom: 12px;
    box-sizing: border-box;
    padding: 0 14px;
    background-color: #f5f5f5;
    color: #666;
    transition: all .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width:780px){
        .search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model .tab-content-packet-type-model-content .tab-content-packet-type-model-content-item {
        width: calc(33% - 12px);
        font-size: 12px;
        text-align: center;
        line-height: 24px;
        height: 28px;
        border-radius: 4px;
        margin-right: 12px;
        margin-bottom: 12px;
        box-sizing: border-box;
        padding: 0 12px;
        background-color: #f5f5f5;
        color: #666;
        transition: all .3s;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model .tab-content-packet-type-model-content .tab-content-packet-type-model-content-item:hover,
.search-box-container .tab-content .tab-content-packet .tab-content-packet-type .tab-content-packet-type-model .tab-content-packet-type-model-content .tab-content-packet-type-model-content-item.active {
    background-color: #034996;
    color: #fff;
}

.search-result {
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media (max-width:780px){
    .search-result {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 24px;
    }
}

.search-result .search-result-item {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: all .3s;
    margin-top: 24px;
    box-shadow: 0 14px 14px 0 rgba(22, 23, 24, .3);
}

@media (max-width:780px){
    .search-result .search-result-item {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        background: #fff;
        border-radius: 8px;
        border: 2px solid #fff;
        transition: all .3s;
        margin-top: 16px;
        box-shadow: 0 14px 14px 0 rgba(22, 23, 24, .3);
    }
}

.search-result .search-result-item .search-result-item-channel {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 12px;
    border-bottom: 1px dashed #5b5c5d;
}

@media (max-width:780px){
    .search-result .search-result-item .search-result-item-channel {
        display: block;
        padding-bottom: 12px;
        border-bottom: 1px dashed #5b5c5d;
    }
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-left .search-result-item-channel-left-name {
    line-height: 24px;
    font-size: 16px;
    color: #161718;
    line-height: 1.5;
    margin-bottom: 8px;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-left .search-result-item-channel-left-cutofftime {
    font-size: 14px;
    color: #161718;
    line-height: 1.5;
    margin-bottom: 8px;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-left .search-result-item-channel-left-referenceaging {
    font-size: 14px;
    color: #161718;
    line-height: 1.5;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
@media (max-width:780px){
    .search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        margin-top: 12px;
    }
}
.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price .search-result-item-channel-right-price-label {
    height: 24px;
    display: flex;
    align-items: flex-end;
    color: #a2a2a3;
    line-height: 28px;
    margin-bottom: 0;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price .search-result-item-channel-right-price-unit {
    color: #fc3a17;
    font-weight: 700;
    font-size: 14px;
    padding-right: 4px;
    margin-bottom: 0;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price .search-result-item-channel-right-price-number {
    font-size: 24px;
    display: flex;
    align-items: flex-end;
    color: #fc3a17;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price .search-result-item-channel-right-price-unit {
    color: #fc3a17;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-price .search-result-item-channel-right-price-text {
    height: 24px;
    display: flex;
    align-items: flex-end;
    color: #a2a2a3;
    margin-bottom: 0;
}

.search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-button {
    width: 120px;
    height: 38px;
    border-radius: 8px;
    background: #034996;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all .3s;
    margin-top: 20px;
    float: right;
    cursor: pointer;
}

@media (max-width:780px){
    .search-result .search-result-item .search-result-item-channel .search-result-item-channel-right .search-result-item-channel-right-button {
        width: 100%;
        height: 38px;
        border-radius: 8px;
        background: #034996;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        transition: all .3s;
        margin-top: 20px;
        float: right;
        cursor: pointer;
    }
}

.search-result .search-result-item .search-result-item-good {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 12px;
}

.search-result .search-result-item .search-result-item-good .search-result-item-good-label {
    width: 70px;
    color: #5b5c5d;
    font-size: 14px;
    line-height: 24px;
}

.search-result .search-result-item .search-result-item-good .search-result-item-good-content {
    width: calc(100% - 70px);
    color: #5b5c5d;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}