html,
body,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
main,
nav,
section,
summary {
  display: block;
}

ul,
ol,
li,
dd {
  list-style: none;
}

span,
i,
em,
b {
  font-style: normal;
  font-weight: normal;
}

img {
  border: none;
  outline: none;
  vertical-align: top;
}

a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #f1721a
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
button,
select,
fieldset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  vertical-align: top;
}

textarea {
  resize: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 滚动条整体部分 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

/* 滚动条滑块悬停状态 */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* 滚动条滑块拖动状态 */
::-webkit-scrollbar-thumb:active {
  background: #666;
}

/* 滚动条 end*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFangSC-Regular", "Microsoft YaHei", "微软雅黑", "STHeiti", "黑体", "SimSun", "宋体", "Arial", "Helvetica", "sans-serif";
  font-size: 14px;
  color: #333;
  background: #fff;
}

:root {
  --themeColor: #FF7800;
  --mainWidth: 1380px;
}

.contentWidth {
  width: var(--mainWidth);
  margin-left: auto;
  margin-right: auto;
}


.flex_LR {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear:after {
  content: '';
  display: block;
  clear: both;
}


.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.textOverflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.textOverflow {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.display-none {
  display: none !important;
}


.gl-title {
  font-family: "PingFangSC-Medium";
  font-size: 48px;
  color: #0A1E2E;
  text-align: center;
  font-weight: normal;
}

/* nav */

.nav-box {
  position: fixed;
  top: 0;
  z-index: 1000;
  height: 64px;
  width: 100%;
  min-width: 1140px;
  background-color: transparent;
  font-size: 16px;
  /* box-shadow: 0 -1px 5px #d4d4d4 inset; */
  /* box-shadow: 0px 3px 6px #00000012; */
  display: flex;
  align-content: center;
  transition: 0.3s;
}

.nav-box.deep {
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000012;
}

.nav-box.deep .nav_item_link {
  color: #333;
  text-shadow: none;
}

.nav-box.deep .nav_item .active {
  color: #000;
}

.nav-box.deep .navBtn {
  border-color: #dedede;
}

.nav-box.deep .navBtn:hover {
  border-color: var(--themeColor);
}

.nav-box.deep .navBtn a {
  color: #333;
}

.nav-box.deep .navBtn a:hover {
  color: currentColor;
}

.nav_log {
  display: flex;
  align-items: center;
}

.small_logo {
  display: inline-block;
  width: 120px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #dedede;
}

.small_logo img {
  width: 100%;
}

.nav_item_link {
  display: block;
  line-height: 64px;
  padding: 0 15px;
  color: #fff;
  font-size: 16px;
  text-shadow: 1px 1px 2px #0000006b;
}

.nav_item .active {
  color: #fff;
  /* font-weight: 500; */
  position: relative;
}

.nav_item>.active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid var(--themeColor);
}

.nav_item~.nav_item {
  margin-left: 10px;
}

.nav_btns {
  margin-left: 20px;
}

.navBtn {
  display: inline-block;
  border: 1px solid #fff;
  line-height: 30px;
  height: 32px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
  border-radius: 5px;
}

.navBtn a {
  color: #fff;
  /* transition: all 0.2s; */
  display: block;
  height: 100%;
  padding: 0 10px;
}

.navBtn:hover {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  color: #fff;
}

.navBtn:hover a {
  color: #fff;
}

.content_item_btn {
  padding: 5px 10px;
  height: auto;
  background-image: linear-gradient(to right, #ffa64d, #ff740b);
  border: none;
}

.content_item_btn a {
  color: #fff !important;
}

.nav_item_lay {
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* height: 0; */
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  padding: 20px 0;
  border-top: 1px solid #00000012;
  box-shadow: 0px 3px 6px #00000012;
}

.nav_item:hover .nav_item_lay {
  /* height: auto; */
  top: 100%;
  opacity: 1;
  visibility: visible;
  padding: 20px 0;
}

.nav_lay_mune {
  width: 240px;
}

.nav_lay_main {
  align-items: flex-start;
  justify-content: flex-start;
}

.nav_lay_main_l {
  border-right: 1px solid #dedede;
}

.nav_lay_mune_item {
  padding: 10px 0;
  padding-left: 30px;
  cursor: pointer;
}

.nav_lay_mune_item img {
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.nav_lay_mune_name {
  font-size: 16px;
  color: #999;
  vertical-align: middle;
}

.nav_lay_mune>.active,
.nav_lay_mune_item:hover {
  position: relative;
  background-image: linear-gradient(to right, transparent, #f6f6f6);
}

.nav_lay_mune>.active::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 15px;
  width: 2px;
  transform: translate(-50%, -50%);
  background-color: var(--themeColor);
}

.nav_lay_mune>.active .nav_lay_mune_name {
  color: #000;
}

.nav_lay_main_r {
  /* display: flex; */
  display: none;
  flex-wrap: wrap;
  margin-left: 20px;
  flex: 1;
}

.nav_lay_main_r.active {
  display: flex;
}

.nav_mume_data {
  width: 25%;
  padding-left: 20px;
  line-height: 30px;
  position: relative;
}

.nav_mume_data:nth-of-type(4)~.nav_mume_data {
  margin-top: 15px;
}

.nav_lay_wrap {
  width: 100%;
}

.NLWC {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
  flex: 1;
}

.old_nav_lay_main {
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.nav_item_lay_link {
  font-size: 16px;
  color: #333;
  margin-left: 15px;
}

.nav_mume_data_title {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.nav_mume_data_title::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  /* border-radius: 50%; */
  background-color: #f1721a;
  position: absolute;
  left: 0;
  top: 9px;
}

.nav_mume_data_text {
  font-size: 14px;
  line-height: 30px;
  color: #333;
}

.NMLI_parent {
  width: 100%;
}

.NMLI_parent .nav_mume_list {
  margin-right: 40px;
  text-align: center;
}

.NMLI_parent .nav_mume_list img {
  width: 80px;
}

.nav_mume_list_wrap {
  display: flex;
  flex-wrap: wrap;
}

.NMLI_parent .nav_mume_list a {
  font-size: 16px;
  color: #333;
  line-height: 30px;
}

.mt10 {
  margin-top: 10px;
}

.default_btb {
  display: inline-block;
  min-width: 160px;
  height: 54px;
  line-height: 54px;
  border-radius: 6px;
  text-align: center;
  font-size: 22px;
  border: 1px solid #B9B9B9;
  color: #666;
  cursor: pointer;
}

.primary.default_btb {
  background-image: linear-gradient(107deg, #FFA951 0%, #FF7208 100%);
  border: none;
  color: #fff;
}

.discover{
  margin-top: 140px;
}



.customs-asd-info {
  width: 30%;
  padding-right: 30px;
}

.customs-asd-content {
  width: 70%;
}

.customs-asd-content img {
  width: 100%;
}

.customs-asd-des {
  font-size: 18px;
  color: #868D93;
}

.customs-asd-rever {
  flex-direction: row-reverse;
}

.customs-asd-rever .customs-asd-info {
  padding-left: 70px;
  padding-right: 0;
}

.dot-text {
  position: relative;
  padding-left: 20px;
  font-size: 24px;
  color: #868686;
}

.dot-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background-color: var(--themeColor);
}