html {
  font-size: 16px;
  height: 100%;
}

body {
  /* height: inherit; */
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  list-style: none;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

a:hover, a:visited, a:link, a:active {
  color: #000000;
}

.nav {
  width: 100%;
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  z-index: 998;
  min-height: 5rem;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.14);
}

.nav .explain {
  float: left;
  display: block;
  color: #ffffff;
  font-size: .875rem;
  align-content: flex-start;
}

.nav .icon_menu {
  display: none;
}

.nav .logo {
  /* width: 11.9375rem; */
  display: flex;
  align-items: center;
  margin-left: 3%;
  height: 5rem;
  position: relative;
}

.nav .logo img {
  width: 100%;
  max-width: 8.125rem;
  object-fit: cover;
}

.nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-right: 3%;
  height: 5rem;
}

.nav ul li {
  width: 8.125rem;
  text-align: center;
  display: inline-block;
  position: relative;
  line-height: 5rem;
}

.nav ul li a {
  width: 7.8125rem;
  color: #333;
  font-size: 1.13rem;
  font-weight: 300;
  display: block;
  height: inherit;
  transition: .3s all;
  cursor: pointer;
  font-family: PingFangSC-Regular;
}

.nav ul li a:hover {
  color: #FB841E;
  /* font-weight: normal; */
}

.nav ul li a.selected {
  color: #FB841E;
}
.nav ul li a span {
  position: relative;
}
.nav ul li a.selected span::after, .nav ul li a:hover span::after{
  content: '';
  background: #FB841E;
  height: 0.38rem;
  position: absolute;
  width: 100%;
  bottom: -1.38rem;
  left: 0;
  border-radius: 0.38rem;
}

.nav ul li a span.icon::before {
  content: '';
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url(/static/picture/drow.png);
  right: -1.5rem;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}
.nav ul li a.selected span.icon::before, .nav ul li a:hover span.icon::before {
  background: url(/static/picture/drow_orange.png);
  transform: rotate(180deg);
}
.nav .second-nav {
  display: none;
}
.nav ul li:hover .second-nav {
  width: 100%;
  z-index: 998;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.14);
  border-radius: 0.625rem;
  font-size: 1rem;
  color: #333333;
  line-height: 1.5rem;
  display: inline-block;
  left: 0;
  top: 4rem;
}

.nav .second-nav .inside-box {
  width: 100%;
  text-align: center;
}

.nav .second-nav a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 2.25rem;
  font-weight: 300;
  cursor: pointer;
  transition: .2s all;
}

.nav .second-nav a:hover {
  color: #FB841E;
}

.nav .second-nav a.selected {
  color: #FB841E;
}

.nav .second-nav.news .inside-box {
  margin-right: calc(8% + 18.125rem);
}
.nav .download_btn {
  background: #FB841E;
  height: 3rem;
  width: 9rem;
  cursor: pointer;
  text-align: center;
  line-height: 3rem;
  color: #fff;
  font-size: 1.25rem;
  display: inline-block;
  border-radius: 3rem;
}
.nav .down_panel {
  display: none;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
}
.nav .down_panel img{
  width: 7.75rem;
  display: inherit;
}
.nav .download_btn .down_panel::before{
  content: '';
  width: 0;
  height: 0;
  border-bottom: 10px solid red;
  border: 1rem solid #ffffff00;
  border-bottom: 0.625rem solid white;
  position: absolute;
  top: -1.625rem;
  right: 48px;
}
.nav .download_btn:hover .down_panel {
  display: inline-block;
  position: absolute;
  width: 25.25rem;
  background: #fff;
  right: 0;
  display: flex;
  top: 6rem;
  height: 15rem;
  align-items: center;
  justify-content: space-around;
}


.cus-min-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #333333;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  margin: 0 auto 4.25rem auto;
}

.cus-min-title:after {
  content: '';
  bottom: -10px;
  left: calc(50% - 5px);
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #fb841d transparent transparent transparent;
}

.cus-min-title.white {
  color: #ffffff;
}

.bottom-bar {
  width: 100%;
}

.bottom-bar .main {
  width: 100%;
  background: url("/static/images/bottom-bar-bg.jpg") no-repeat;
  background-size: cover;
  height: 370px;
}

.bottom-bar .main .inside-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar .main .inside-box .logo {
  max-width: 120px;
}

.bottom-bar .main .inside-box .logo img {
  width: 100%;
  object-fit: cover;
}

.bottom-bar .main .inside-box .nav-list a {
  color: #ffffff;
  font-size: 1rem;
  display: block;
  line-height: 1.875rem;
  font-weight: 300;
  transition: .2s all;
}

.bottom-bar .main .inside-box .nav-list a:hover {
  color: #3d4044;
}

.bottom-bar .main .inside-box .contact p {
  display: block;
  font-weight: 300;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.375rem;
}

.bottom-bar .main .inside-box .contact .logo-group img {
  max-width: 30px;
  object-fit: cover;
  margin-right: 5px;
  cursor: pointer;
}

.bottom-bar .main .inside-box .download p {
  display: block;
  font-weight: 300;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.375rem;
}

.bottom-bar .main .inside-box .download .qr-code {
  width: 100%;
}

.bottom-bar .main .inside-box .download .qr-code .group {
  width: calc(50% - 10px);
  float: left;
}

.bottom-bar .main .inside-box .download .qr-code .group:nth-child(1) {
  margin-right: 20px;
}

.bottom-bar .main .inside-box .download .qr-code .group span {
  display: block;
  color: #ffffff;
  font-size: .875rem;
  font-weight: 300;
  text-align: center;
}

.bottom-bar .main .inside-box .download .qr-code .group img, .bottom-bar .main .inside-box .download .qr-code .group canvas {
  width: 100%;
  object-fit: cover;
  max-width: 200px;
}

.bottom-bar .end {
  width: 100%;
  padding: 0 5%;
  background: #3d4044;
  min-height: 40px;
  line-height: 40px;
  font-size: .75rem;
  color: #ffffff;
  text-align: center;
}

.qr-code-window {
  left: 0;
  top: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.qr-code-window .inside {
  width: 170px;
  height: 170px;
  background: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.qr-code-window .inside img {
  width: 100%;
  max-width: 164px;
  object-fit: contain;
}

.qr-code-window span {
  color: #ffffff;
  margin-top: .9375rem;
  font-size: 2.25rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  cursor: pointer;
}
.download_fixed {
  position: fixed;
  display: none;
}

.container .banner {
  margin-top: 5rem;
}

.swiper-slide .qrcode_outer {
  position: absolute;
  color: #fff;
  right: 1%;
  top: 40%;
  display: flex;
  text-align: center;
}
.swiper-slide .qrcode_outer>div {
  margin-right: 20px;
}
.swiper-slide .qrcode_outer canvas {
  max-width: 10vw!important;
  max-height: 10vw!important;
  padding: 5px;
  background: #fff;
}

.container .banner.driver {
  position: relative;
}
.banner.driver .qrcode_outer {
  position: absolute;
  left: 5%;
  top: 40%;
  display: flex;
  text-align: center;
}
.banner.driver .qrcode_outer canvas, .qr-code canvas {
  max-width: 10vw!important;
  max-height: 10vw!important;
  padding: 5px;
  background: #fff;
}
@media only screen and (min-width: 1025px) and (max-width: 1281px) {
  /* hi-res laptops and desktops */
  .bottom-bar .inside-box {
    flex-wrap: wrap;
    justify-content: space-around !important;
  }
  .bottom-bar .inside-box .logo {
    width: 6.25rem;
  }
  .bottom-bar .inside-box p, .bottom-bar .inside-box a {
    font-size: .875rem !important;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1330px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
  html {
    font-size: .875rem;
  }
  .nav .logo {
    margin-left: 3%;
  }
  .nav ul {
    margin-right: 3%;
  }
  .nav .second-nav .inside-box {
    margin-right: 10rem;
  }
  .nav .second-nav.news .inside-box {
    margin-right: 18.125rem;
  }
  .bottom-bar .inside-box {
    flex-wrap: wrap;
    justify-content: space-around !important;
  }
  .bottom-bar .inside-box .logo {
    width: 6.25rem;
  }
  .bottom-bar .inside-box p, .bottom-bar .inside-box a {
    font-size: .875rem !important;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1170px) {
  .nav .logo {
    margin-left: 1%;
  }
  .nav ul {
    margin-right: 1%;
  }
}


@media only screen and (min-width: 320px) and (max-width: 1062px) {
  html {
    font-size: .75rem;
  }
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
  .nav .logo {
    margin-left: 3%;
  }
  .nav ul {
    margin-right: 1%;
  }
  .nav .logo {
    width: 6.25rem;
  }
  .nav .logo:after {
    display: none;
  }
  .nav .second-nav .inside-box {
    margin-right: 10rem;
  }
  .nav .second-nav.news .inside-box {
    margin-right: 18.125rem;
  }

}

@media only screen and (min-width: 320px) and (max-width: 640px) {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
  .bottom-bar .main {
    height: auto;
    background-position: center center;
  }
  .bottom-bar .inside-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 1.875rem 0 !important;
  }
  .bottom-bar .inside-box .logo {
    width: 50%;
    order: 1;
    max-width: 100% !important;
  }
  .bottom-bar .inside-box .logo img {
    width: 6.25rem !important;
  }
  .bottom-bar .inside-box .download {
    width: 50%;
    order: 2;
  }
  .bottom-bar .inside-box .download img {
    max-width: 6.25rem;
  }
  .bottom-bar .inside-box .nav-list {
    width: 100%;
    order: 4;
    text-align: center;
    display: flex;
    margin-top: .625rem;
    justify-content: space-between;
  }
  .bottom-bar .inside-box .contact {
    width: 100%;
    order: 3;
  }
  .bottom-bar .inside-box .contact p {
    float: left;
    display: inline-block;
    text-align: justify;
    line-height: 1.5625rem !important;
    font-size: .5rem !important;
  }
  .bottom-bar .inside-box .contact .logo-group {
    width: 100%;
    float: left;
  }
  .bottom-bar .inside-box .contact .logo-group img {
    float: left;
    margin-right: 5px;
  }
  .bottom-bar .end {
    line-height: 1.875rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 640px) {
  /* smartphones, iPhone, portrait 480x320 phones */
  .nav {
    padding: .625rem;
    min-height: 3.125rem;
  }
  .nav ul {
    height: 3.125rem;
    margin-right: 0;
  }
  .nav ul li {
    margin-left: 1.5625rem;
    line-height: 3.125rem;
  }
  .nav .logo {
    width: 6.25rem;
    margin-left: 0;
    height: 3.125rem;
  }
  .nav .second-nav .inside-box {
    margin-right: 5rem;
  }
  .nav .second-nav.news .inside-box {
    margin-right: 10.5rem;
  }
  .bottom-bar .inside-box {
    width: 90% !important;
  }
  .bottom-bar .inside-box .contact {
    text-align: center;
  }
}




@media only screen and (min-width: 320px) and (max-width: 920px) {
  .nav {
    padding: 5px 0;
    flex-wrap: wrap;
    height: 3.125rem;
    align-content: flex-start;
    overflow: hidden;
  }
  .nav:after {
    content: '';
    left: 0;
    top: 3.125rem;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
  }
  .nav .logo {
    margin-left: 5px;
    margin-top: -5px;
  }
  .nav .icon_menu {
    display: block;
    margin-right: 5px;
    margin-top: -5px;
    width: 1.5rem;
  }
  .nav ul {
    width: 100%;
    height: auto;
    margin-top: 5px;
    display: block;
  }
  .nav ul li {
    width: 100%;
    margin: 0;
    display: block;
    text-align: center;
    /* height: 3.125rem; */
  }
  .nav ul li a {
    display: inline-block;
    height: 2.5rem;
    font-size: 1.25rem;
    line-height: 2.5rem;
    border-bottom: 1px solid #FF9800;
  }
  .nav .second-nav .inside-box {
    width: 100%;
    margin-right: 0;
  }
  .nav .second-nav .inside-box a {
    width: 100%;
    font-size: 1.00rem;
    line-height: 2.5rem;
    margin: auto;
    width: 5rem;
  }
  .nav ul li a span.icon::before {
    width: 1.2rem;
    height: 1.2rem;
    background-size: cover;
  }
  .nav li.down{
    display: none;
  }
  .nav ul li .second-nav, .nav ul li:hover .second-nav{
    box-shadow: none!important;
    border-radius: none!important;
    border-radius: 0;
    position: initial;
    background: initial;
  }
  .nav ul li a.selected span::after, .nav ul li a:hover span::after {
    display: none;
  }
  .download_fixed {
    background: #fff;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    height: 5.57rem;
    align-items: center;
    z-index: 999;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.14);
  }
  .download_fixed .btn {
    height: 3.5rem;
    width: 14rem;
    background: #FB841E;
    border-radius: 1rem;
    font-size: 1.5rem;
    line-height: 3.5rem;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
  }
  .download_fixed .full{
    width: 90%;
  }
  .container .banner {
    margin-top: 3.125rem;
  }
  .bottom-bar .download .qr-code .group canvas {
    max-width: 20vw!important;
    max-height: 20vw!important;
    padding: 1px;
  }
  .swiper-slide .qrcode_outer canvas, .banner.driver .qrcode_outer canvas {
    padding: 1px;
  }
  .index.qrcode_outer {
    right: -1rem;
    top: 34%;
  }
  .index.qrcode_outer>div{
    margin-right: 0.3125rem;
  }
  .index.qrcode_outer canvas {
    max-width: 15vw!important;
    max-height: 15vw!important;
  }
  .index.qrcode_outer {
    transform: scale(0.60);
  }
  /* .index.qrcode_outer #index_driver_qrcode+div, #index_shipper_qrcode+div{
    transform: scale(0.5);
  } */
}
