:root {
    --normal-width: 1200px;
}

.header {
    background-color: #F9F9F9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0px 0px 16px rgb(53, 61, 70, 0.7);
}

.header_content {
    width: var(--normal-width);
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_btn {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    /* font-weight: 500; */
    margin-right: 28px;
}

.menu li {
    font-size: 16px;

}

.menu a {
    cursor: pointer;
    padding: 27px;
    margin-left: 0;
}

.logo {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo .logo_pic {
    background: url("../index_files/logo-6.png") no-repeat;
    /* background-size: 100%; */
    background-size: contain;
    width: 220px;
    height: 42px;
    margin: 5px auto 6px 22px;
    pointer-events: none;
}

.banner {
    margin-top: 90px;
    background-color: #353d46;
    height: 700px;
    /* background-image: url('../images/ex/banner_bg.jpg'); */
    background-size: cover;
    position: relative;
}

.banner_content {
    width: var(--normal-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about,
.track {
    margin-top: 110px;
}

.about {
    width: 600px;
    height: auto;
    color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about_title {
    width: 500px;
    margin-top: -38px;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 1);
}

.about_text_wrp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about_text {
    width: 500px;
    font-size: 20px;
    font-weight: bold;
    line-height: 34px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 1);
}

/* .about_more {
    font-size: 18px;
    margin: 20px 0 40px;
    text-decoration: underline;
    cursor: pointer;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 1);
    animation: textLight 4s infinite linear;
} */
.track {
    width: 600px;
}

.textarea_wrap {
    width: 100%;
    box-sizing: border-box;
    height: 323px;
    overflow-y: auto;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.h {
    /* background-color: #ccc; */
    padding: 10px;
    line-height: 18px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.h:nth-child(even) {
    background-color: #f1f1f1;
}

.h_num {
    width: 30px;
    flex-shrink: 0;
}

.h_content {
    flex: 1;
    font-size: 14px;
}

.h_close {
    margin-left: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    background-color: #CCC;
    color: #fff;
    cursor: pointer;
}

.h_close:hover {
    background-color: #666;
}

.h_content:empty::before {
    content: attr(placeholder);
    font-size: 14px;
    color: #999;
    padding-top: 20px;
}

.h_content[placeholder]:empty+.h_close {
    display: none;
}

.h_content[placeholder]:empty {
    height: 200px;
}

.ctrl {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ctrl .clear,
.ctrl .copy {
    width: 50px;
    height: 40px;
    border: 1px solid #e5e5e5;
    color: #666666;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    transition: all .2s;
}

.ctrl .copy {
    width: 80px;
    margin-left: 10px;
    margin-right: auto;
    transition: all .3s;
}

.ctrl .clear:hover,
.ctrl .copy:hover {
    border-color: #065fbd;
    color: #065fbd;
}

.ctrl .clear:active,
.ctrl .copy:active {
    border-color: #065fbd;
    background-color: #065fbd;
    color: #FFFFFF;
}

.ctrl .search {
    width: 200px;
    margin: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.search {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    background-color: #065fbd;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 16px auto;
    font-weight: bold;
}

.search:hover {
    background-color: #064e9b;
}

.search:active {
    background-color: #065fbd;
}

.culture {
    width: var(--normal-width);
    height: 200px;
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.culture_item {
    width: 18%;
    height: 100%;
    box-sizing: border-box;
    padding: 18px 10px;
    background-color: #F5F5F5;
    box-shadow: 0px 0px 20px #353d46;
    transition: all .3s linear;
}

.culture_item_icon {
    font-size: 60px;
    margin-bottom: 18px;
}

.culture_item_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 18px;
    margin-left: 10px;
}

.culture_item_note {
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    line-height: 18px;
}

.culture_item:hover {
    background: #F5F5F5 -webkit-linear-gradient(-45deg, #353d46, #999999);
    transform: translateY(-12%);
}

.culture_item:hover .culture_item_icon,
.culture_item:hover .culture_item_title,
.culture_item:hover .culture_item_note {
    color: #FFFFFF;
}

section {
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.container {
    margin: 0 auto;
    max-width: var(--normal-width);
    padding: 0;
}

.row {
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
}

.media {
    display: flex;
    align-items: flex-start;
}

.bg-3 {
    background-color: #f3f5f7;
    padding: 140px 0 50px;
}

.bg-4 {
    background-color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 20px;
}

.bg-3 .content-text {
    margin-right: 140px;
}

.bg-4 .content-text {
    margin-left: 140px;
}

.content-area ul li {
    margin-top: 30px;
}

.content-area ul li h4 {
    font-size: 24px;
    font-weight: bold;
    color: #a60036;
    margin-bottom: 16px;
}

.content-area ul li .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1.5px solid #578c84;
    color: #578c84;
    line-height: 20px;
    text-align: center;
    transform: rotate(180deg);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 16px;
}

.advantage {
    background-color: #f3f5f7;
    padding: 100px 0 150px;
}

.advantage_content {
    width: var(--normal-width);
    margin: 0 auto;
}

.advantage_title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.advantage_line {
    width: 500px;
    height: 4px;
    margin: 16px auto 30px;
    background-color: #a60036;
}

.advantage_note {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.advantage_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.advantage_item {
    width: 30%;
    height: 220px;
    margin-top: 30px;
    background: #FFFFFF;
    box-shadow: 1px 2px 20px rgb(53, 61, 70, 0.4);
    padding: 20px;
    box-sizing: border-box;
    transition: all .3s linear;
}

.advantage_item_title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.advantage_item_line {
    width: 60px;
    height: 4px;
    margin: 16px auto;
    background-color: #a60036;
}

.advantage_item_note {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
}

.advantage_item:hover {
    background: #F5F5F5 -webkit-linear-gradient(-45deg, #353d46, #999999);
    transform: translateY(-8%);
}

.advantage_item:hover .advantage_item_title,
.advantage_item:hover .advantage_item_note {
    color: #FFFFFF;
}

.advantage_item:hover .advantage_item_line {
    background-color: #FFFFFF;
}

.footer {
    background-color: #353d46;
    height: 360px;
    padding: 50px 0;
}

.footer_content {
    width: var(--normal-width);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
}

.introduce .title {
    width: 88px;
}

.introduce .title img {
    width: 100%;
}

.introduce .note {
    width: 240px;
    color: #8e8e8e;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 30px;
}

.footer_content .title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.footer_content li {
    color: #8e8e8e;
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
}

.company_title {
    color: #8e8e8e;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.company_note {
    width: 260px;
    color: #8e8e8e;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #30353b;
    padding: 10px;
    border-radius: 5px;
}

.footer .center {
    text-align: center;
    color: #b7b7b7;
}

.footer .center.p {
    margin-top: 130px;
    margin-bottom: 10px;
}

.track_main {
    width: var(--normal-width);
    margin: 140px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.content {
    /* margin-left: 380px; */
    padding: 10px;
    border-radius: 5px;
    background-color: #f3f5f7;
}

.filter {
    width: 780px;
    margin-top: 20px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.filter li {
    margin-right: 14px;
    cursor: pointer;
    width: auto;
    display: block;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
}

.filter li.all {
    color: #30353b;
}

.filter li.IN_TRANSIT,
.filter li.Transit {
    color: #2196f3;
}

.filter li.DELIVERED,
.filter li.Delivered {
    color: #43a047;
}

.filter li.EXPIRED,
.filter li.empty {
    color: #757575;
}

.filter li.DELIVERY_FAILED,
.filter li.fail {
    color: #f44336;
}

.filter li.ABNORMAL,
.filter li.warning {
    color: #ff6f00;
}

.filter li.LATE,
.filter li.late {
    color: #b71c1c;
}

.filter li.NO_INFO,
.filter li.no-info {
    color: #9e9e9e;
}

/* 对于ARRIVE状态，使用原来的arrive颜色 */
.filter li.ARRIVE,
.filter li.arrive {
    color: #0d47a1;
}

/* 激活状态的样式 */
.filter li.active {
    background-color: #8e8e8e;
    color: #FFFFFF !important;
    /* 激活时强制白色文字 */
}


.lists {
    margin-top: 20px;
    padding-right: 10px;
    width: 780px;
    max-height: 650px;
    overflow-y: auto;
}

.lists::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f5f5f5;
}

.lists::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
    background-color: #f5f5f5;
}

.lists::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #c8c8c8;
}

.order-items {
    margin-top: 10px;
}

.order-items .th {
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    height: 60px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.order-items .th .order_num {
    width: 35%;
}

.order-items .th .order_country {
    width: 45%;
}

.order-items .th .order_status {
    width: 15%;
}

.order-items .th .order_btn {
    width: 5%;
    text-align: right;
}

.order-items .th .order_btn .iconfont {
    transition: all .3s;
}

.order-items.open .th .order_btn .iconfont {
    transform: rotate(90deg);
}

.order-items.open .tbody {
    display: block;
    animation: show .5s both;
}

@keyframes show {
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.order-items .tbody {
    display: none;
    opacity: 0;
    padding: 10px 0;
    transform-origin: top;
    transform: scale(1, 0);
    position: relative;
}

.order-items .tbody .item {
    padding: 10px 20px 10px 10px;
    margin-left: 44px;
    box-sizing: border-box;
    min-height: 30px;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    position: relative;
}

.order-items .tbody:before {
    content: '';
    width: 1px;
    background-color: #CCC;
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 30px;
}

.order-items .tbody .item:first-child:before {
    content: '';
    position: absolute;
    top: 14px;
    left: -20px;
    width: 10px;
    height: 10px;
    background-color: #757575;
    border-radius: 50%;
}

.order-items .tbody .item:before {
    content: '';
    position: absolute;
    top: 14px;
    left: -20px;
    width: 10px;
    height: 10px;
    background-color: #f3f5f7;
    border: 1px solid #757575;
    border-radius: 50%;
}

.order-items .tbody .item:hover {
    background-color: #FFFFFF !important;
}

.order-items .tbody .item .track_time {
    width: 26%;
    line-height: 20px;
}

.order-items .tbody .item .track_message {
    width: 60%;
    line-height: 20px;
}

.order-items .tbody .item .track_address {
    /* justify-content: flex-end; */
    flex: 1;
    /* text-align: right; */
}


.sidebar {
    position: fixed;
    top: 139px;
    left: 50%;
    margin-left: 240px;
    /* margin-left: -600px; */
    width: 360px;
    height: 500px;
}

.track_main .center {
    width: 100%;
    height: 290px;
    background-color: #FFFFFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track_main .center img {
    width: 30%;
}

.sidebar .valid_text {
    display: none;
    color: #a60036;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}