/* #region  初始化 */
* {
  margin: 0;
  padding: 0;
  font-family: text;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
}

div,
a {
  box-sizing: border-box;
}

input {
  border: none;
  outline: none;
}

li {
  list-style: none;
}

.clearfloat {
  zoom: 1;
}

.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

.flex_row {
  display: flex;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_space_between {
  display: flex;
  justify-content: space-between;
}

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}

.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}

.cursor {
  cursor: pointer;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;
  /* image-rendering: -moz-crisp-edges;  
  image-rendering: -o-crisp-edges;     
  image-rendering: -webkit-optimize-contrast; 
  image-rendering: crisp-edges; 
  -ms-interpolation-mode: nearest-neighbor; */
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-container {
  width: 100%;
}


/* #endregion */

/* #region  首页*/
body {
  min-width: 1200px;
}

.width {
  width: 1200px;
  margin: 0 auto;
}

.header_top {
  border-bottom: 1px solid #eaeaea;
}

.header_top .width {
  height: 99px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 371px;
}

.phone {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 28px;
  color: #32b16c;
}

.header_hr {
  margin-left: 40px;
  margin-right: 30px;
  height: 30px;
  border-right: 1px solid #eaeaea;
}

.phone img {
  width: 20px;
  margin-right: 15px;
}

.language {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999999;
  transition: 50ms;
}

.language img {
  width: 18px;
  margin-right: 8px;
}

.language:hover {
  color: #32b16c;
}

.nav {
  display: flex;
  justify-content: space-between;
}

.nav li {
  position: relative;
}

.nav_href {
  font-size: 18px;
  line-height: 60px;
  color: #333333;
  position: relative;
  transition: 50ms;
}

.nav_href::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #32b16c;
  transition: .2s;
  opacity: 0;
}

.nav_active::after,
.nav_href:hover::after {
  width: 100%;
  opacity: 1;
}

.nav_href:hover,
.nav_active {
  color: #32b16c;
}

.nav_select {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 100%;
  z-index: 20;
  background: #fff;
  padding: 7px 0;
  border: 1px solid #eaeaea;
  border-top: none;
  display: none;
}

.nav_select a {
  font-size: 16px;
  line-height: 40px;
  color: #333;
  padding: 0 20px;
  white-space: nowrap;
  transition: 50ms;
}

.nav_select a:hover {
  color: #32b16c;
}

.banner {
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner .swiper-scrollbar {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .2);
  z-index: 10;
  width: 240px;
  height: 6px;
  cursor: pointer;
}

.banner .swiper-scrollbar-drag {
  background: #ffffff;
}

.index1 {
  padding: 80px 0 90px 0;
}

.index_title div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #333333;
  letter-spacing: 3px;
}

.index_title img {
  width: 24px;
  margin: 0 28px;
}

.index_title span {
  font-size: 18px;
  color: #999999;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.index1_con {
  overflow: hidden;
  height: 600px;
  margin-top: 34px;
}

.index1_con a {
  width: 380px;
  height: 300px;
  float: left;
  position: relative;
  overflow: hidden;
}

.index1_con a:first-of-type {
  width: 440px;
  height: 600px;
}

.index1_con a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .5s;
}

.index1_con a div {
  position: absolute;
  left: 40px;
  bottom: 60px;
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
}

.index1_con a div::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 80px;
  height: 4px;
  background: #32b16c;
}

.index1_con a:hover img {
  transform: scale(1.05);
}

.index2 {
  padding: 96px 0 104px 0;
  background: url(../images/index2_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.index2 .index_title div {
  color: #fff;
}

.index2_text {
  font-size: 16px;
  line-height: 2.3;
  color: #fff;
  width: 80%;
  margin: 60px auto 0 auto;
}

.index2_btn {
  width: 224px;
  height: 64px;
  border-radius: 6px;
  background: #32b16c;
  color: #fff;
  line-height: 64px;
  text-align: center;
  font-size: 16px;
  transition: .1s;
  margin: 68px auto 0 auto;
}

.index2_btn:hover {
  opacity: .9;
}

.index3 {
  padding: 80px 0 86px 0;
  background: #f5f5f5;
}

.index_news {
  display: flex;
  flex-wrap: wrap;
  margin-top: 52px;
}

.index_news li {
  width: 370px;
  margin-right: 45px;
}

.index_news li:nth-of-type(3n+3) {
  margin-right: 0;
}

.index_news li a {
  background: #fff;
  box-shadow: 2.121px 2.121px 15px 0px rgba(0, 0, 0, 0.06);
}

.index_news li i {
  display: block;
  overflow: hidden;
}

.index_news li img {
  width: 100%;
  height: 276px;
  object-fit: cover;
  object-position: center;
  transition: .5s;
}

.index_news li div {
  padding: 22px 25px 28px 25px;
}

.index_news li h3 {
  font-size: 20px;
  line-height: 30px;
  height: 60px;
  color: #333333;
  font-weight: normal;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 50ms;
}

.index_news li span {
  font-size: 16px;
  color: #32b16c;
  display: block;
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
  margin-top: 15px;
}

.index_news li a:hover img {
  transform: scale(1.05);
}

.index_news li a:hover h3 {
  color: #32b16c;
}

.footer {
  background: #333333;
}

.footer_top {
  padding: 42px 0 32px 0;
  display: flex;
  align-items: center;
}

.footer_logo {
  width: 49px;
  margin-right: 40px;
}

.footer_nav {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #adadad;
}

.footer_nav a {
  color: #adadad;
  transition: 50ms;
}

.footer_nav a:hover {
  color: #fff;
}

.footer_nav li {
  display: flex;
  align-items: center;
}

.footer_nav li::after {
  content: '·';
  margin: 0 11px;
  font-size: 30px;
}

.footer_nav li:last-of-type::after {
  display: none;
}

.footer_phone {
  padding: 0 38px 0 32px;
  height: 64px;
  border: 1px solid #32b16c;
  border-radius: 6px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #32b16c;
}

.footer_phone img {
  width: 20px;
  margin-right: 14px;
}

.footer_text {
  font-size: 16px;
  line-height: 1.5;
  color: #adadad;
  padding: 25px 0;
  border-top: 1px solid #484848;
}

.footer_text a {
  display: inline;
  color: #adadad;
}

.nav_modal,
.nav_icon {
  display: none;
}

/* #endregion */

/* #region  关于我们*/
.banner2 {
  position: relative;
}

.banner2_bg {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.banner2_con {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
}

.banner2_title {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.banner2_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  margin-top: 30px;
}

.banner2_nav img {
  width: 17px;
  margin-right: 14px;
}

.banner2_nav a {
  color: #fff;
  transition: 50ms;
}

.banner2_nav a:hover {
  color: #32b16c;
}

.banner2_nav span {
  margin: 0 3px;
}

.about {
  padding: 80px 0 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about_left img {
  width: 500px;
}

.about_right {
  width: 620px;
  padding-top: 10px;
}

.about_title {
  font-size: 40px;
  color: #333333;
}

.about_text {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin-top: 42px;
}

.about_ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 47px;
}

.about_ul li {
  margin-right: 85px;
  font-size: 16px;
  color: #32b16c;
  text-align: center;
}

.about_ul li:last-of-type {
  margin-right: 0;
}

.about_ul img {
  width: 61px;
  margin: 0 auto;
}

.about_ul div {
  margin-top: 9px;
}

/* #endregion */

/* #region  新闻资讯*/
.news_tab {
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}

.news_tab li {
  width: 214px;
  height: 90px;
  margin: 0 1px;
  position: relative;
}

.news_tab a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 90px;
  background: #ebebeb;
  text-align: center;
  font-size: 18px;
  color: #333333;
  transition: 50ms;
  z-index: 10;
  transition: .2s;
}

/* .news_tab a:hover, */
.news_tab .news_active {
  top: -5px;
  height: 100px;
  line-height: 100px;
}

.news_tab a:hover,
.news_tab .news_active {
  background: #32b16c;
  color: #fff;
}

 

.news {
  padding: 50px 0 80px 0;
}

.news .index_news {
  margin-top: 0;
}

.news .index_news li {
  margin-top: 30px;
}

.page {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.page a {
  font-size: 18px;
  color: #333333;
  margin: 0 10px;
  padding: 0 8px;
  line-height: 1.5;
  transition: 50ms;
}

.page a:hover,
.page .page_active {
  color: #32b16c;
}

.news_show {
  background: #f5f5f5;
}

.show_card {
  background: #fff;
  padding: 68px 0 70px 0;
}

.show_title {
  font-size: 30px;
  color: #333333;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  padding: 0 50px;
  line-height: 1.5;
}

.show_time {
  font-size: 16px;
  color: #999999;
  text-align: center;
  padding: 0 50px;
  margin-top: 18px;
}

.show_hr {
  border-top: 1px solid #eaeaea;
  margin-top: 38px;
}

.show_text {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  padding: 0 50px;
  margin-top: 42px;
}

.show_text img {
  max-width: 100%;
  display: inline;
}

.show_text a {
  display: inline;
}

.show_page {
  padding: 50px 0;
}

.show_page div {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.show_page a {
  display: inline;
  color: #333333;
  transition: 50ms;
}

.show_page a:hover {
  color: #32b16c;
}

/* #endregion */

/* #region  国际货运服务*/
.transport {
  padding: 80px 0 78px 0;
}

.transport_title div {
  font-size: 36px;
  color: #333333;
}

.transport_title span {
  display: block;
  font-size: 16px;
  color: #999999;
  margin-top: 11px;
} 
 
.transport_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}

.transport_left {
  position: relative;
  z-index: 10;
}

.transport_left img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.transport_right {
  width: 522px;
  padding: 35px 0;
  position: relative;
}

.transport_text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  position: relative;
  z-index: 10;
}

.transport_bg {
  font-size: 80px;
  color: rgba(243, 243, 243, 0.8);
  font-weight: bold;
  position: absolute;
  left: -100px;
  top: 0;
  line-height: 1;
}

.transport_dot {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.transport_dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e5e5;
  margin: 0 10px;
  opacity: 1;
  transition: .1s;
}

.transport_dot .swiper-pagination-bullet-active {
  background: #32b16c;
}

/* #endregion */

/* #region  人才招聘*/
.recruit {
  padding: 50px 0 46px 0;
}

.recruit_title {
  font-size: 40px;
  color: #333333;
  text-align: center;
}

.recruit_ul {
  margin-top: 50px;
}

.recruit_ul li {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  padding: 45px 60px 42px 0;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.recruit_left {
  width: 220px;
  padding: 0 20px;
  text-align: center;
}

.recruit_left div {
  font-size: 24px;
  color: #32b16c;
}

.recruit_left span {
  display: block;
  font-size: 16px;
  color: #999999;
  margin-top: 12px;
}

.recruit_center {
  width: 640px;
  height: 160px;
  margin-left: 55px;
  overflow: hidden;
}

.recruit_active .recruit_center {
  height: auto;
}

.recruit_right {
  margin-left: auto;
}

.recruit_text {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}

.recruit_name {
  color: #333333;
}

.recruit_tips {
  font-size: 16px;
  color: #c53232;
  margin-top: 30px;
  line-height: 1.5;
}

.recruit_right {
  font-size: 16px;
  color: #fff;
  background: #32b16c;
  width: 172px;
  height: 54px;
  border-radius: 6px;
  line-height: 54px;
  text-align: center;
  cursor: pointer;
  transition: .1s;
}

.recruit_right:hover {
  opacity: .85;
}

/* #endregion */

/* #region  在线留言*/
.message {
  padding: 76px 134px 90px 134px;
}

.message_title {
  font-size: 40px;
  color: #333333;
  text-align: center;
}

.message_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.message_form div {
  width: 440px;
  height: 60px;
  border: 1px solid #cacaca;
  border-radius: 6px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #666666;
  padding-left: 28px;
  overflow: hidden;
}

.message_form input {
  flex: 1;
  height: 100%;
  overflow: hidden;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
  background: none;
}

.message_form textarea {
  width: 100%;
  height: 180px;
  border: 1px solid #cacaca;
  display: block;
  box-sizing: border-box;
  border-radius: 6px;
  resize: none;
  font-size: 16px;
  color: #333;
  padding: 16px 28px;
  outline: none;
}

.message_form textarea:-ms-input-placeholder {
  color: #666666;
}

.message_form textarea::-webkit-input-placeholder {
  color: #666666;
}

.message_form textarea::-moz-placeholder {
  color: #666666;
}

.message_form textarea:-moz-placeholder {
  color: #666666;
}

.message_form textarea:-moz-placeholder {
  color: #666666;
}

.message_form button {
  width: 100%;
  height: 60px;
  background: #32b16c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 6px;
  margin-top: 40px;
  font-size: 20px;
  transition: .1s;
  cursor: pointer;
}

.message_form button:hover {
  opacity: .85;
}

/* #endregion */

/* #region  优势航线*/
.advantage {
  padding: 76px 0 60px 0;
}

.advantage_title {
  font-size: 36px;
  color: #333333;
  text-align: center;
}

.advantage_con {
  position: relative;
}

.advantage_text {
  padding: 0 200px;
  font-size: 16px;
  color: #000000;
  line-height: 2;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: 40px;
}

.advantage_bg {
  font-size: 80px;
  color: rgba(243, 243, 243, 0.8);
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  z-index: 1;
}

.advantage .transport_dot {
  margin-top: 50px;
}

/* #endregion */

/* #region  联系我们*/
.contact {
  padding: 78px 0 60px 0;
}

.contact_title {
  font-size: 40px;
  color: #333333;
  text-align: center;
}

.contact_ul {
  display: flex;
  justify-content: center;
  margin-top: 78px;
  padding: 0 50px;
}

.contact_ul li {
  width: 33.33%;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.contact_ul li img {
  width: 36px;
  margin: 0 auto;
}

.contact_ul li span {
  display: block;
  font-size: 16px;
  color: #32b16c;
  margin-top: 22px;
}

.contact_ul li div {
  font-size: 20px;
  color: #333333;
  margin-top: 12px;
}

.contact_map {
  height: 500px;
  margin-top: 72px;
}

.contact_map img {
  width: 100%;
  height: 100%;
}

/* #endregion */

/* #region  */

/* #endregion */