* {
  padding: 0;
  margin: 0;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
a,
code,
img,
q,
s,
samp,
strike,
strong,
tt,
b,
div,
u,
i,
dl,
dt,
dd,
ol,
button,
ul,
li,
fieldset,
legend,
article,
aside,
footer,
header,
menu,
nav,
ruby,
section,
audio,
video {
  border: 0;
  /* font: inherit; */
  vertical-align: baseline;
}

/* 修改根标签为替代(IE)盒模型 */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

/* 所有标签继承替代(IE)盒模型 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
/* custom */
a {
  outline: none;
  color: #16418a;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
.swiper {
  width: 100%;
  /* height: 630px; */
}
.swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/*/~ 修改当前选中圆点的颜色 ~/
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF512F; 
}
 /~ 修改未选中圆点的颜色 ~/
.swiper .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #ffffff; 
}*/

p {
  word-break: break-all;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.ham4 .top {
  stroke-dasharray: 40 121;
}
.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.ham4.active .top {
  stroke-dashoffset: -68px;
}
.ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.banner img {
  width: 100%;
}
.button {
  position: relative;
  padding-block: 0.5rem;
  padding-inline: 10px;
  background-color: #008080;
  border-radius: 0 9999px 9999px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
}
.lf0 {
  left: 0 !important;
}
#rfidDropdown {
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 9999;
  transform-origin: top center;
  transform: scale(0);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 29px 20px 20px 20px;
  /* 新增：默认隐藏时完全透明 */
  /* opacity: 0; */
  /* 新增：过渡效果（缩放和透明度同时过渡，时长0.4秒，节奏适中） */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#rfidDropdown .select-item {
  background-color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  border: 1px solid #e0e0e0;
}
#rfidDropdown .select-item a {
  padding: 4px 20px;
  display: block;
}
#rfidDropdown .select-item:hover {
  background-color: #008080;
  color: #fff;
}
.mask-cover {
   position: fixed;
   top: 80px;
   left: 0;
   width: 100%;
   height: 0;
   background-color: #00000080;
   z-index: 998;
   transition: opacity 0.2s ease-in-out;
   opacity: 0;
}