#app .container{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    background-image: url("/static/img/bg.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px;
    font-size: 16px;
    display: flex;
}
.header,.main{
    width: 100%;
}
.logo{
    width: calc(246 / 1920 * 100%);
    padding-top: calc(24 / 1920 * 100%);
    padding-left: calc(48 / 1920 * 100%);
    /*margin-top: 24px;*/
    /*margin-left: 48px;*/
}
.logo div{
    padding-bottom: calc(162 / 246 * 100%);
}
.title{
    width: calc(1161 / 1920 * 100%);
    padding-top: calc(44 / 1920 * 100%);
    margin: auto;
}
.title > div{
    padding-bottom: calc(106 / 1161 * 100%);
}
.title p{
    display: none;
}
.language-container{
    position: fixed;
    top: 0;
    right: 0;
    margin-top: calc(24 / 1920 * 100%);
    margin-right: calc(48 / 1920 * 100%);
}
.language-container .fa-language{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.main{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.search-container{
    width: calc(688 / 1920 * 100%);
}
.search-container .search-main{
    position: relative;
    padding-bottom: calc(104 / 688 * 100%);
    background-color: #080e0f;
    border-radius: 7px;
}
.search-container .search-main .search-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.search-container .prefix{
    width: calc(189 / 688 * 100%);
    padding-right: calc(38 / 688 * 100%);
    padding-left: calc(28 / 688 * 100%);
}
.search-container .prefix div{
    padding-bottom: calc(37 / 189 * 100%);
}
.search-container .input-container{
    margin-right: calc(42 / 688 * 100%);
    padding-bottom: calc(48 / 688 * 100%);
    flex: 1;
    position: relative;
    background-color: #fff;
    border-radius: 7px;
}
.search-container .input-container .input-main{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.search-container .input-container input{
    width: calc( (390 - 42) / 390 * 100% );
    box-sizing: border-box;
    height: 100%;
    background-color: transparent;
    border-width: 0;
    padding-left: calc(20 / 390 * 100%);
    padding-right: calc(10 / 390 * 100%);
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.search-container .input-container .icon{
    width: calc(33 / 390 * 100%);
    margin-right: calc(9 / 390 * 100%);
}
.search-container .input-container .icon div{
    padding-bottom: calc(31 / 33 * 100%);
}

/*订单跟踪*/
.order-page-content {
    margin-top: calc(40 / 1920 * 100%);
    width: calc(688 / 1920 * 100%);
    background-color: #fff;
    border-radius: 7px;
    transition: .5s all;
}

.order-page-content dl {
    width: 100%;
    margin: calc(50 / 688 * 100%) 0;
}

.order-page-content dt {
    padding: 5px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.order-page-content dd {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.order-page-content dd:before {
    position: absolute;
    content: '';
    border-left: 1px dashed #ddd;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    height: 100%;
}

.order-page-content dd span {
    display: block;
    text-align: right;
}

.order-page-content dd span, .order-page-content dd label {
    padding: 8px 20px;
    width: 50%;
    line-height: 1em;
}

.order-page-content dd i {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.order-page-content dd:nth-child(1) i {
    background-color: #333;
}

.order-page-content dd:nth-child(1) i, .order-page-content dd:nth-last-child(1) i {
    width: 20px;
    height: 20px;
}

.order-page-content dd i p {
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
}

/*.order-page-content dd + dd{border-top: 1px solid #ddd;}*/
/*订单跟踪结束*/

@media screen and (max-width: 1200px){
    .search-container{
        width: 45%;
    }
    .order-page-content{
        width: 60%;
    }
}

@media screen and (max-width: 950px){
    .search-container,.order-page-content{
        width: 60%;
    }
}

@media screen and (max-width: 750px) {
    .logo{
        width: 30%;
        padding-top: 30px;
        padding-left: 20px;
    }
    .language-container{
        margin-top: 30px;
        margin-right: 20px;
    }
    .title{
        width: 100%;
        padding-top: 50px;
    }
    .title > div {
        padding-bottom: calc(50 / 1161 * 100%);
    }
    .title img{
        display: none;
    }
    .title p{
        display: block;
        font-size: 40px;
        color: #fff;
        text-align: center;
        line-height: 1.4em;
    }
    .title p:nth-child(3){
        text-indent: 20px;
        letter-spacing: 20px;
    }
    .en-container .title p:nth-child(3){
        letter-spacing: 0;
        text-indent: 0;
    }
    .fn-container .title p:nth-child(3){
        letter-spacing: 0;
        text-indent: 0;
    }
    .search-container,.order-page-content{
        width: 95%;
    }
    .search-container .input-container{
        margin-right: calc(30 / 688 * 100%);
    }
}
