/*Initialization ===== */
:root {
  --e-global-color-primary: #6ec1e4;
  --e-global-color-secondary: #54595f;
  --e-global-color-text: #7a7a7a;
  --e-global-color-accent: #61ce70;
  --e-global-color-black: #000;
  --e-global-color-red: #ff4d4f;
  --e-global-color-white: #fff;
  --e-global-color-126ac8d8: #f7b633;
  --e-global-color-31bedd15: #0096d7;
  --e-global-color-27277a38: #143c8c;
  --e-global-color-e8e8e8: #e8e8e8;
  --e-global-color-4c4c4c: #4c4c4c;
  --transition-opacity-05: opacity 0.5s ease, visibility 0.5s ease;
  --swiper-navigation-sides-offset: 0px;
  --swiper-navigation-size: 1.5rem;
  --swiper-theme-color: #002e89;
  --swiper-pagination-bottom: 0;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-opacity: 0.7;
  --swiper-pagination-color: var(--e-global-color-31bedd15);
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-inactive-color: var(--e-global-color-31bedd15);
}

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Document */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1920px;
  margin: 0 auto;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Images */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--e-global-color-e8e8e8);
  border: 0;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  margin: 0;
  min-width: 0;
  padding: 0;
  vertical-align: middle;
  white-space: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

p {
  word-wrap: break-word;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== Utility Classes ===== */

/* Clear float */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* Text alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

/* Display */
.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

/* Flexbox */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

/* Margin & Padding */
.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

/* Width & Height */
.w-100 {
  width: 100%;
}

.w-1440 {
  max-width: 1440px;
  width: 100%;
}

.w-1140 {
  max-width: 1140px;
  width: 100%;
}

.w-900 {
  max-width: 900px;
  width: 100%;
}

.h-100 {
  height: 100%;
}

.min-h-100 {
  min-height: 100vh;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* Colors */
.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #666;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Visibility */
.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.gap-50 {
  gap: 2.925rem;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  border-radius: 0;
  padding: .876rem 1.52rem;
  font-size: 14px;
  border: 1px solid var(--e-global-color-31bedd15);
  color: var(--e-global-color-white);
  background-color: var(--e-global-color-31bedd15);
  transition: all .3s
}

.btn:hover {
  background-color: var(--e-global-color-white);
  color: var(--e-global-color-31bedd15);
  border: 1px solid var(--e-global-color-31bedd15);
}

.btn-primary {
  border: 1px solid var(--e-global-color-white);
  color: var(--e-global-color-white);
  background-color: var(--e-global-color-126ac8d8);
}

.btn-primary:hover {
  background-color: var(--e-global-color-white);
  color: var(--e-global-color-126ac8d8);
  border: 1px solid var(--e-global-color-126ac8d8);
}

.btn-secondary {
  border: 1px solid var(--e-global-color-27277a38);
  color: var(--e-global-color-white);
  background-color: var(--e-global-color-27277a38);
}

.btn-secondary:hover {
  background-color: var(--e-global-color-white) !important;
  color: var(--e-global-color-31bedd15) !important;
  border: 1px solid var(--e-global-color-31bedd15) !important;
}

/* Flex 居中 */
.flex-center {
  justify-content: center;
  align-items: center;
}

/* Flex 左右分布 */
/* .flex-between {
  justify-content: space-between;
  align-items: center;
} */

/* Flex 左右对调 */
.flex-row-reverse {
  flex-direction: row-reverse;
  align-items: center;
}

/* Flex 垂直居中 */
.flex-col-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Flex 左右居中，垂直等间距 */
.flex-col-between {
  flex-direction: column;
  justify-content: space-between;
}

/* Flex 网格填充 */
.flex-1 {
  flex: 1;
}

/* Flex 自动填充 */
.flex-auto {
  flex: 1 1 auto;
}

/* Flex 不缩放 */
.flex-none {
  flex: none;
}

/* Flex 换行 */
.flex-wrap {
  flex-wrap: wrap;
}

/* Flex 不换行 */
.flex-nowrap {
  flex-wrap: nowrap;
}

/* 子元素垂直居中 */
.items-center {
  align-items: center;
}

/* 子元素左对齐 */
.items-start {
  align-items: flex-start;
}

/* 子元素右对齐 */
.items-end {
  align-items: flex-end;
}

/* 子元素基线对齐 */
.items-baseline {
  align-items: baseline;
}

/* 主轴左对齐 */
.justify-start {
  justify-content: flex-start;
}

/* 主轴居中 */
.justify-center {
  justify-content: center;
}

/* 主轴右对齐 */
.justify-end {
  justify-content: flex-end;
}

/* 主轴左右等间距 */
.justify-between {
  justify-content: space-between;
}

/* 主轴周围等间距 */
.justify-around {
  justify-content: space-around;
}

/* 主轴均匀分布 */
.justify-evenly {
  justify-content: space-evenly;
}

/* pages */
.max1024hidden {
  display: none;
}

/* alltitle */
.th2 {
  font-size: 18px;
  color: var(--e-global-color-31bedd15);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tt1 {
  font-size: clamp(26px, 2.2rem, 30px);
  color: var(--e-global-color-31bedd15);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.tt1 a:hover {
  color: var(--e-global-color-31bedd15);
}

.ti {
  width: 5.625rem;
  /* height: 3px; */
  border-block-start: 4px solid var(--e-global-color-31bedd15);
}

.scaleImg {
  overflow: hidden;
}

.scaleImg img {
  transition: transform 0.5s ease;
  transform-origin: center;
}

.scaleImg:hover img {
  transform: scale(1.1);
}

.pagebar {
  margin-top: 2.5rem;
  text-align: center;
}

.pagebar>span {
  display: inline-block;
  vertical-align: middle;
}

.pagebar>span.page-numbar,
.pagebar>span.page-numbar .page-num {
  margin: 0 4px;
}

.pagebar a {
  font-size: 16px;
  min-width: 1.875rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0 0.625rem;
  margin: 0 4px;
  text-align: center;
  border: 1px solid var(--e-global-color-text);
  color: var(--e-global-color-text);
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.3s;
}

.pagebar a:hover,
.pagebar a.page-num-current {
  background-color: var(--e-global-color-e8e8e8);
  color: var(--e-global-color-white);
  border-color: var(--e-global-color-e8e8e8);
}

.pagebar .page-status,
.pagebar .page-last {
  display: none;
}

/* header */
.header {
  padding: 0.625rem 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .2);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--e-global-color-white);
}

.header .container {
  padding: .5rem 0;
}

.header.scrolled {
  position: fixed;
}

.header .logo {
  width: 18%;
  padding: 0 2rem;
}

.header .nav {
  width: 47%;
}

.header .nav ul {
  list-style: none;

}

.header .nav>ul>li {
  display: inline-block;
  margin-right: clamp(7px, 1.2rem, 20px);
  position: relative;
}

@media screen and (max-width: 1110px) and (min-width: 1024px) {
  .header .nav>ul>li:first-child {
    display: none;
  }
}

.header .nav>ul>li:last-child {
  margin-right: 0;
}

.header .nav>ul>li ul {
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  width: 280px;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: -0.625rem;
  box-shadow: 1px 5px 8px 0px rgba(0, 0, 0, .5);
  background-color: var(--e-global-color-white);
  transition: var(--transition-opacity-05);
  padding: 0.625rem 0;
}

.header .nav>ul>li:hover ul {
  opacity: 1;
  visibility: visible;
}

.header .nav a {
  display: block;
  padding: 3px 0;
  color: var(--e-global-color-4c4c4c);
  font-size: 16px;
  font-weight: 600;
}

.header .nav a .iconfont {
  font-size: 12px;
  margin-left: 3px;
  vertical-align: middle;
}

.header .nav a:hover,
.header .nav a.active {
  color: var(--e-global-color-27277a38);
}

.header .nav>ul>li ul li {
  padding: 3px 0.625rem;
}

/* .header .tel{} */
.header .tel p {
  padding: 0 0.625rem;
}

.header .tel p i {
  padding-right: 5px;
}

.header .tel .tel-btn:hover {
  color: var(--e-global-color-white);
  background-color: var(--e-global-color-31bedd15);
}

/* banner */
.banner {
  color: var(--e-global-color-white);
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}

.banner .hr-b {
  width: 100%;
  border-block-start: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) 1;
}

.banner .h2 {
  font-size: clamp(20px, 2.8rem, 48px);
  line-height: 1.1;
}

.banner .t1 {
  font-size: 1.635rem;
}

.banner .t2 p {
  font-size: clamp(16px, 1.4rem, 18px);
}

.banner .t2 .p1 {
  line-height: 1.5;
}

.banner .t2 .pimg .ul {
  width: 90%;
}

.banner .t2 .pimg .ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.333%;
  margin-left: 5px;
}

.banner .t2 .pimg .ul li:first-child {
  margin-left: 0;
}

.banner .t2 .pimg .ul li .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.banner .t2 .pimg .ul li p {
  margin: 0;
  font-size: 18px;
}

.banner .t2 .pimg .ul li::before {
  content: '\e602';
  font-family: "iconfont";
  width: 35px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 28px;
  margin-right: 10px;
  flex-shrink: 0;
}

.banner .t2 .pimg .ul li:nth-child(2)::before {
  content: '\e604';
}

.banner .t2 .pimg .ul li:nth-child(1)::before {
  content: '\eba0';
  font-size: 34px;
}

.banner .t2 .pimg .ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  height: 65%;
  border-inline-start: 1px solid var(--e-global-color-white);
}

.banner .t2 .pimg .ul li:last-child::after {
  display: none;
}

.banner .t2 .pimg .ul li span {
  font-size: 14px;
}

.banner .btn:hover {
  background-color: var(--e-global-color-27277a38);
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-27277a38);
}

.banner-content {
  height: clamp(20px, 43.19rem, 740px);
  padding: 0 4.7rem 0 9.35rem;
  width: clamp(640px, 65rem, 1110px);
  background: linear-gradient(to right, rgba(2, 56, 156, 1) 10%, rgba(2, 56, 156, 0) 100%);
}

/* hr */
.hr {
  padding-bottom: 4.6875rem;
}

.hr-top {
  background-color: var(--e-global-color-31bedd15);
  position: relative;
}

.hr-top .t {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
}

.hr svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
}

.hr-top svg {
  height: 2.75rem;
  transform: translateX(-50%) rotateY(180deg);
}

.hr-top svg path {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}

.hr-top .b {
  min-height: 3.125rem;
}

.hr-bottom {
  position: relative;
}

.hr-bottom .t {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
}

.hr-bottom svg {
  transform: translateX(-50%);
}

.hr-bottom svg path {
  fill: var(--e-global-color-31bedd15);
}

/* tbanner */
.tbanner {
  background-color: var(--e-global-color-31bedd15);
  color: var(--e-global-color-white);
}

.tbanner .content {
  padding: 3.4375rem 0;
}

.tbanner .tb1 {
  font-size: 1.81rem;
  font-weight: 600;
  width: 70%;
  padding: 0 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.tbanner a {
  width: 200px;
  text-align: center;
  font-size: 15px;
}

.tbanner .tb2 {
  flex: 1;
}

/* services */
.services {
  padding: 7.5rem 80px;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgb(1, 9, 23) 0%, rgb(39 77 102) 90%);
  background-image: linear-gradient(90deg, rgb(14 42 99) 0%, rgb(0 121 174) 90%);
  position: relative;
}

.globalsvg3 {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
}

.globalsvg3 svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 3.125rem;
}

.services .t svg path {
  fill: var(--e-global-color-31bedd15);
}

.services.industries-services .t svg path {
  fill: url(#industriesSvcGrad);
}

.services .content {
  color: var(--e-global-color-white);
}

.services .content ul li {
  padding: 1.25rem;
  text-align: center;
  width: 25%;
}

.services .content .i {
  height: 5.625rem;
  width: 5.625rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(to bottom, #1d3562, #0079ae);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}

.services .content ul li:nth-child(1) .i i {
  font-size: 34px;
}

.services .content ul li:nth-child(2) .i i {
  font-size: 39px;
  padding-top: 7px;
}

.services .content ul li:nth-child(3) .i i {
  font-size: 35px;
}

.services .content ul li:nth-child(4) .i i {
  font-size: 37px;
  padding-right: 2px;
}

.services .content .k {
  font-size: clamp(18px, 1.4rem, 20px);
  font-weight: bold;
}

.services .content .h {
  width: 5.625rem;
  height: 3px;
  background-color: var(--e-global-color-white);
}

.services .content .c {
  text-align: left;
  word-break: break-all;
}

.globalsvg2 {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
  transform: rotate(180deg);
}

.globalsvg2 svg {
  height: 3.25rem;
  transform: translateX(-50%) rotateY(180deg);
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
}

.services .b svg path {
  fill: var(--e-global-color-white);
  transform-origin: center;
  transform: rotateY(0deg);
}

/* about */
.about {
  padding: 8.125rem 0 7.5rem;
}

.about .img {
  width: 35.625rem;
}

.wuzhou-about .img {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}

.about .img .o {
  width: 78%;
  padding: 2.1875rem 0;
  background-color: transparent;
  background-image: linear-gradient(90deg, #0c3f91 0%, #3ca9f3 100%);
}

.wuzhou-about .img .o {
  display: flex;
  justify-content: flex-end;
}

.about .img .o .m {
  width: 130%;
}

.wuzhou-about .img .o .m {
  flex-shrink: 0;
  width: 120%;
}

.about .img img {
  width: 100%;
}

.about .content {
  /* padding: 0 80px 0 0; */
  max-width: 620px;
  margin: 0 auto;
}

.about.wuzhou-about .content {
  padding: 0 0 0 20px;
}

.about .content .cc {
  color: var(--e-global-color-4c4c4c);
  padding: 1.5625rem 0;
  min-height: 13.75rem;
  word-break: break-all;
}

.about .content .btn:hover {
  background-color: var(--e-global-color-27277a38);
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-27277a38);
}

/* todo */
.todo {
  padding: 5rem 80px;
}

.todo .title {
  width: 43.75rem;
  margin: 0 auto;
  padding-bottom: 1.875rem;
}

.title .cc {
  word-break: break-all;
}

.todo .content ul li {
  box-shadow: 0px 0px 1.3125rem 0px rgba(0, 0, 0, .4);
  margin: 0 0.625rem;
  padding-bottom: 2.1875rem;
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.todo .content ul li .text-center {
  margin-top: auto;
}

.todo.zhuangpei-todo .content ul li {
  padding-bottom: 0;
}

.todo.zhuangpei-todo .content li .k {
  font-size: clamp(16px, 1.4rem, 20px);
}

.todo.zhuangpei-todo .content li .c {
  text-align: left;
  margin-bottom: 10px;
}

.todo .content li .i {
  max-height: 15.625rem;
  overflow: hidden;
}

.todo .content li .k {
  font-size: 20px;
  padding: 0 20px;
  text-align: center;
  font-weight: 600;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.todo .content li .c {
  font-size: 16px;
  padding: 0.625rem 0.9375rem;
  text-align: center;
  color: var(--e-global-color-4c4c4c);
  min-height: 85px;
  word-break: break-all;
}

.todo .content li a:hover {
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-27277a38);
  background-color: var(--e-global-color-27277a38);
}

.bannerSwiper {
  height: 380px;
  padding: 0 40px;
}

.bannerSwiper .slidebox {
  overflow: hidden;
}

.bannerSwiper .slider-image {
  width: 40%;
  padding: 5px;
}

.bannerSwiper .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerSwiper .slider-content {
  width: 60%;
  padding: 15px 0;
}

.bannerSwiper .slider-content .s {
  color: var(--e-global-color-31bedd15);
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: 400;
  padding: 1.25rem 0;
}

.bannerSwiper .slider-content .l {
  color: #143c8c;
  letter-spacing: 1.4px;
  font-size: clamp(22px, 1.9rem, 32px);
  font-weight: 400;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.bannerSwiper .slider-content .l::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4.375rem;
  border-block-start: 3px solid var(--e-global-color-31bedd15);
}

.bannerSwiper .slider-content .p {
  color: #4c4c4c;
  font-size: clamp(14px, 1.2rem, 16px);
  /* height: 130px; */
  word-break: break-all;
  line-height: 1.5;
}

.bannerSwiper .slider-content .btnbox {
  padding-top: 30px;
}

.bannerSwiper .slider-content .btnbox a {
  padding: 10px 30px;
  border-radius: 3px;
}

.bannerSwiper .slider-content .btnbox a:hover {
  background: var(--e-global-color-27277a38);
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-27277a38);
}

/* step */
.step {
  padding: 5rem 80px;
}

.step .l {
  width: 30rem;
}

.step .l .title {
  padding-bottom: 2.5rem;
}

.step .l .cc {
  font-size: 16px;
  color: var(--e-global-color-4c4c4c);
}

.step .r ul {
  display: flex;
  flex-wrap: wrap;
}

.step .r ul li {
  width: 50%;
  padding: 1.5625rem 0px;
}

.step .r ul li .s {
  color: rgba(246, 182, 51, .2);
  font-size: 108px;
  font-weight: 700;
  line-height: .2em;
  opacity: .75;
  width: 7.1875rem;
  text-align: right;
}

.step .r ul li .c .t1 {
  font-size: 18px;
  color: var(--e-global-color-31bedd15);
  font-weight: 700;
  padding: 0.9375rem 0;
}

.step .r ul li .c .t2 {
  color: var(--e-global-color-4c4c4c);
  word-break: break-all;
}

.step-accordion-item .step-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.step-accordion-item.active .step-accordion-body {
  max-height: 500px;
}

.step-accordion-toggle {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 14px;
  color: var(--e-global-color-31bedd15);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.step-accordion-toggle:hover {
  color: var(--e-global-color-27277a38);
}

.step-accordion-item.active .step-accordion-toggle {
  color: var(--e-global-color-27277a38);
}

/* indexnews */
.index-news {
  padding: 0 80px 3.125rem;
}

.index-news .title {
  width: 43.75rem;
}

.index-news .title .cc {
  color: var(--e-global-color-4c4c4c);
  word-break: break-all;
}

.index-news .news-item {
  overflow: hidden;
  padding: 1.5rem 7px;
  width: 25%;
}

.index-news .news-item .img {
  width: 100%;
  height: 9.375rem;
  overflow: hidden;
  padding: 1rem 0;
}

.index-news .news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.index-news .news-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--e-global-color-4c4c4c);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.index-news .news-item a:hover {
  color: var(--e-global-color-31bedd15);
}

.index-news .news-item .time {
  color: var(--e-global-color-text);
  padding-top: 2px;
  font-size: 12px;
}

.index-news .news-item p:nth-child(4),
.index-news .news-item .news-content p:nth-child(3) {
  font-size: 14px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
}

.index-news .news-item a.text-bold {
  color: var(--e-global-color-4c4c4c);
  font-size: 16px;
}

/* index-form */
.index-form {
  background-color: var(--e-global-color-e8e8e8);
}

.index-form .container {
  padding: 4.375rem 80px;
  gap: 20px;
}

.index-form .img .cc {
  font-size: 16px;
  line-height: 30px;
  word-break: inherit;
}

.index-form .img .cc span {
  color: var(--e-global-color-31bedd15);
  font-weight: 600;
}


.index-form .formbox {
  width: 50%;
}

.form {
  gap: 1rem;
  width: 100%;
}

.form .field {
  position: relative;
}

.form .field .checkcode {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3rem;
}

.form .field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--e-global-color-text);
  margin-bottom: 6px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--e-global-color-e8e8e8);
  border-radius: 0;
  font-size: 15px;
  background: var(--e-global-color-white);
}

.form input {
  padding: 0 0.875rem;
  height: 3rem;
}

.form textarea {
  padding: 0.8125rem 0.875rem;
  resize: vertical;
  min-height: 6.875rem;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--e-global-color-white);
}

.form .btn {
  padding: 0.875rem 0;
}

/* clients */
.clients {
  padding: 4.375rem 0;
  position: relative;
}

.clients .svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.clients .svg svg {
  width: calc(100% + 1.3px);
  height: 3.4375rem;
  transform: translateX(-50%) rotateY(180deg);
  display: block;
  position: relative;
  left: 50%;
}

.clients .svg svg path {
  transform-origin: center;
  transform: rotateY(0deg);
  fill: rgba(247, 182, 51, .31);
}

.clients .title {
  width: 44.375rem;
}

.clients .title .cc {
  font-size: 16px;
}

.clients .title .cc p {
  padding-bottom: 1.25rem;
}

.clients .title .cc p a {
  color: var(--e-global-color-27277a38);
}

.clients .title .btn:hover {
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-27277a38);
  background-color: var(--e-global-color-27277a38);
}

.clients .img img {
  width: 70%;
  margin: 0 auto;
}

/* swiperbanner */
.swiper-banner {
  overflow: hidden;
  padding: 6.25rem 80px 5rem;
}

.swiper-banner .container {
  height: 6.25rem;
}

.swiper-banner .container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding-bottom: 20px;
}

/* tip */
.tip1 {
  background-color: var(--e-global-color-31bedd15);
  padding: 1.5625rem 20px;
  color: var(--e-global-color-white);
}

.tip1 .cc {
  /* font-size: 14px; */
  max-width: 680px;
  margin: 0 auto;
}

.tip2 {
  background-color: var(--e-global-color-126ac8d8);
}

.tip2 .container {
  padding: 1.875rem 0;
  gap: 9.375rem;
}

.tip2 .cc {
  color: var(--e-global-color-white);
  font-size: 16px;
  font-weight: 700;
}

.tip2 .btn {
  font-weight: 700;
}

/* hr */
.hr1 {
  overflow: hidden;
}

.hr1 svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hr1 svg path {
  fill: var(--e-global-color-31bedd15);
  transform-origin: center;
  transform: rotateY(0deg);
}

.hr2 {
  position: relative;
  padding: 1.25rem 0;
}

.hr2 .svg {
  transform: rotate(180deg);
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
}

.hr2 svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  height: 2.5rem;
  transform: translateX(-50%) rotateY(180deg);
}

.hr2 svg path {
  fill: var(--e-global-color-31bedd15);
  transform-origin: center;
  transform: rotateY(0deg);
}

/* footer */
.footer {
  background-color: transparent;
  background-image: linear-gradient(90deg, #0b3c8e 0%, #3ca9f3 100%);
  padding: 3.75rem 0;
}

.footer .link {
  padding: 0.9375rem 0;
  gap: 5rem;
  color: var(--e-global-color-white);
}

.footer .link ul li {
  padding-bottom: 0.625rem;
}

.footer .link ul a {
  font-size: 14px;
}

.footer .link ul .tit p {
  font-weight: 600;
  font-size: 18px;
}

.friend {
  padding: 0.9375rem 0;
  color: var(--e-global-color-white);
  background-image: linear-gradient(90deg, #0b3c8e 0%, #3ca9f3 100%);
}

.friend a {
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  padding: 0 5px;
}

.copyright {
  padding: 0.625rem 0;
  background-color: var(--e-global-color-31bedd15);
  font-size: 12px;
}

.copyright p {
  color: var(--e-global-color-white);
  font-size: 12px;
}

/* about */
.about-banner {
  background-image: url(../images/about_banner.jpg);
  background-size: cover;
  background-position: center;
}

.banner-content .h2,
.banner-content .t2 {
  text-shadow: rgb(0, 0, 0) 0px 0px 0.625rem;
}

.banner-content .t2 {
  max-width: 600px;
}

.banner-content .t1 {
  text-shadow: rgb(0, 0, 0) 0px 0px 0.9375rem;
  font-size: 2.105rem;
}

.about-banner .banner-content .t2 {
  text-shadow: rgb(0, 0, 0) 0px 0px 0.625rem;
  font-size: 18px;
  width: 33.4375rem;
  padding-bottom: 1.25rem;
}

.about-banner .banner-content .t2 a {
  font-weight: 700;
}

.about-banner .banner-content .t2 a:hover {
  color: var(--e-global-color-31bedd15);
}

.about-banner .btn {
  width: 12.5rem;
}

.gotit-banner {
  /* background-image: url(../images/gotit.jpg); */
  background-size: cover;
  background-position: center;
  position: relative;
}

.gotit-banner .title {
  width: 70rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.gotit-banner .t1 {
  color: var(--e-global-color-31bedd15);
}

.gotit-banner .cc {
  color: var(--e-global-color-4c4c4c);
  /* text-indent: 2em; */
  padding-bottom: 5px;
}

.gotit-banner .content {
  width: 11.875rem;
}

.gotit-banner .content i.icon-play-icon {
  color: var(--e-global-color-white);
  width: 200px;
  height: 200px;
  font-size: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gotit-about {
  padding: 5rem 0;
}

.globalsvg1 {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
}

.globalsvg1 svg {
  height: 2.5rem;
  transform: translateX(-50%) rotateY(180deg);
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
}

.gotit-banner .svg path {
  fill: url(#gradient);
  transform-origin: center;
  transform: rotateY(0deg);
}

.gotit-banner .svg1 {
  top: auto;
  bottom: -1px;
  transform: rotate(180deg);
}

.gotit-banner .svg1 path {
  fill: var(--e-global-color-31bedd15);
}

.server {
  padding: 3.125rem 80px;
}

.server .t {
  padding: 1.875rem 0;
}

.server .t ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.125rem 0;
}

.server .t ul li {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 11.0625rem; */
}

.server .t ul li p.icon {
  height: 5.625rem;
  width: 5.625rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(to bottom, #144190, #3ea7f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-white);
}

.server .t ul li p.icon i {
  font-size: 50px;
}

.server .t ul li:nth-child(1) p.icon i {
  font-size: 45px;
}

.server .t ul li:nth-child(3) p.icon i {
  font-size: 36px;
}

.server .t ul li:nth-child(4) p.icon i {
  font-size: 40px;
}

.server .t ul li:nth-child(5) p.icon i {
  font-size: 38px;
}

.server .t ul li:nth-child(6) p.icon i {
  font-size: 34px;
}

.server .t ul li:nth-child(7) p.icon i {
  font-size: 38px;
}

.server .t ul li:nth-child(8) p.icon i {
  font-size: 46px;
}


.server .t ul li img {
  width: 6.25rem;
}

.server .t ul li p.k {
  font-size: clamp(18px, 1.6rem, 22px);
  color: var(--e-global-color-4c4c4c);
  font-weight: 600;
  padding: 1.25rem 0;
  height: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server .t ul li p.i {
  width: 5.625rem;
  border-block-start: 4px solid var(--e-global-color-31bedd15);
}

.server .t ul li p.cc {
  padding: 1.25rem;
  padding-bottom: 0;
  font-size: 16px;
  word-break: break-all;
}

.todo .about-list {
  padding: 3.125rem 0;
}

.todo .about-list ul {
  gap: 2.5rem 0;
}

.todo .about-list ul li {
  padding: 0 5px;
  width: calc(100% / 7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.todo .about-list ul li i {
  width: 3.75rem;
  height: 45px;
  margin: 0 auto;
  font-size: 40px;
}

.todo .about-list ul li:nth-child(2) i {
  font-size: 42px;
  padding-top: 3px;
}

.todo .about-list ul li:nth-child(3) i {
  font-size: 44px;
  padding-top: 1px;
}

.todo .about-list ul li:nth-child(4) i {
  padding-top: 6px;
}

.todo .about-list ul li:nth-child(5) i {
  padding-top: 7px;
}

.todo .about-list ul li:nth-child(6) i {
  padding-top: 4px;
}

.todo .about-list ul li:nth-child(7) i {
  padding-top: 4px;
}

.todo .about-list ul li:nth-child(8) i {
  padding-top: 5px;
}

.todo .about-list ul li:nth-child(9) i {
  padding-top: 2px;
}

.todo .about-list ul li:nth-child(11) i {
  font-size: 36px;
  padding-top: 3px;
}

.todo .about-list ul li:nth-child(12) i {
  font-size: 50px;
}

.todo .about-list ul li:nth-child(13) i {
  font-size: 36px;
  padding-top: 6px;
}

.todo .about-list ul li:nth-child(14) i {
  font-size: 44px;
  padding-top: 2px;
}

.todo .about-list ul li p.k {
  /* font-size: 18px; */
  color: var(--e-global-color-4c4c4c);
}

.todo .about-list ul li p.i {
  width: 5.625rem;
  margin: 10px 0;
  border-block-start: 4px solid var(--e-global-color-31bedd15);
}

.todo.about-todo {
  padding-top: 0;
}

.todo.about-todo .k {
  font-weight: 700 !important;
}

/* article */
.article-content .overview {
  font-size: 22px;
  color: var(--e-global-color-4c4c4c);
  padding: 2.5rem 80px;
  overflow: hidden;
}

.listbox .list .article-content .overview {
  padding: 0;
}

.article-content .overview h1 {
  font-size: 30px;
  letter-spacing: -.02em;
  padding: 1rem 0 3rem;
}

.article-more {
  padding: 0 80px 5rem;
}

.article-more .news-item {
  padding: 1.25rem 0 !important;
  width: 33.333%;
}

.article-more .title,
.article-more2 .title {
  font-size: 24px;
  color: var(--e-global-color-4c4c4c);
  font-weight: 600;
}

.article-more2 {
  padding-top: 3rem;
}

.article-more2 .news-item {
  padding: 0;
  width: 48%;
}

.article-more2 .news-list {
  gap: 20px 0;
  padding-top: 20px;
  justify-content: space-between;
}

.article-more2 .news-item .time {
  padding: 0;
  margin: 0;
  width: 80px;
  text-align: right;
  font-size: 14px;
  color: var(--e-global-color-text);
}

.article-more2 .news-item h3 {
  width: calc(100% - 80px);
  font-weight: 400;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  font-size: 16px;
  color: var(--e-global-color-4c4c4c);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* newslist */
.newslist-banner {
  background-image: url('../images/news-list-bg.jpg');
  background-size: cover;
  background-position: center;
}

.newslist-banner .banner-content {
  max-width: 71.25rem;
}

.listbox {
  padding: 5rem 80px;
}

.listbox .list {
  width: 60.3125rem;
}

.listbox .list li {
  padding-bottom: 15px;
  gap: 1.25rem;
}

.listbox .list li .img {
  width: 15rem;
  height: 10rem;
  overflow: hidden;
}

.listbox .list li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.listbox .list li .text {
  flex: 1;
}

.listbox .list li .text .h3 a {
  font-size: 18px;
  font-weight: 400;
  color: var(--e-global-color-31bedd15);
}

.listbox .list li .text .h3 a:hover {
  color: var(--e-global-color-27277a38);
}

.listbox .list li .text p.t1 {
  color: var(--e-global-color-text);
  font-size: 12px;
}

.listbox .list li .text p.t2 {
  color: var(--e-global-color-text);
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  text-overflow: ellipsis;
}

.listbox .rlist {
  flex: 1;
}

.listbox .rlist .k {
  font-size: 18px;
  font-weight: 700;
  color: var(--e-global-color-4c4c4c);
}

.listbox .rlist .search form {
  margin-top: 1.25rem;
}

.listbox .rlist .search form input {
  padding: 0.625rem 1.25rem;
  border-radius: 5px;
  color: var(--e-global-color-text);
}

.listbox .rlist .search form input::placeholder {
  font-size: 12px;
  color: #888;
}

.listbox .rlist .search form input:focus {
  outline: none;
}

.listbox .rlist .search form .btn:hover {
  background-color: var(--e-global-color-31bedd15);
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-31bedd15);
}

.listbox .rlist ul li {
  padding-bottom: 0.625rem;
  list-style: none;
}

.listbox .rlist ul li a {
  color: var(--e-global-color-31bedd15);
  font-size: 16px;
}

.listbox .rlist ul li a:hover {
  color: var(--e-global-color-27277a38);
}

.listbox .rlist ul.myservices {
  /* gap: 0 20px; */
  flex-wrap: wrap;
  justify-content: end;
}

.listbox .rlist ul.myservices li {
  width: 100%;
}

/* searchpage */
.search-key {
  padding: 5rem 80px 0;
}

.search-key h1 {
  font-weight: 400;
}

/* locations */
.plastics-banner .banner-content {
  width: clamp(610px, 51rem, 800px);
}

.industries-list-banner .banner-content .t2 p,
.plastics-banner .banner-content .t2 p,
.services-list-banner .t2 p {
  font-size: 20px;
}

.industries-list-banner .banner-content {
  /* width: clamp(610px, 51rem, 800px); */
  background: none;
  padding-left: 6rem;
}

.services-banner-content {
  padding-left: 4.7rem !important;
}

.locations-banner .banner-content {
  /* width: clamp(610px, 51rem, 800px); */
  background: linear-gradient(to right, rgb(61 115 214) 30%, rgba(2, 56, 156, 0) 100%);
  padding-left: 6rem;
}

.locations-banner .h2 {
  /* font-size: clamp(34px, 3rem, 50px); */
}

.locations-banner .banner-content .t2 p {
  /* font-size: clamp(16px, 1.4rem, 22px);
  line-height: 1.5; */
}

.localmap {
  padding: 5rem 0;
}

.localmap .container {
  width: 100%;
}

.localmap .container .map {
  width: 55%;
  display: flex;
  justify-content: flex-end;
}

.localmap .container .map .o {
  width: 78%;
  padding: 2.1875rem 0;
  background-color: transparent;
  background-image: linear-gradient(90deg, #0c3f91 0%, #3ca9f3 100%);
  display: flex;
  justify-content: flex-end;
}

.localmap .container .map .o .m {
  width: 120%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.localmap .container .map .o .m>div {
  width: 90%;
  height: 360px;
}

.localmap .map-content {
  padding-left: clamp(20px, 8.5rem, 145px);
}

.localmap .map-content .t {
  font-size: 24px;
  color: var(--e-global-color-4c4c4c);
}

.localmap .map-content .t.mb-2 {
  font-size: 20px;
}

.localinfo {
  padding: 5rem 0;
}

.localinfo .img {
  width: 29.17rem;
}

.localinfo .info {
  padding-right: 7rem;
}

.localinfo .info .title p:last-child {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--e-global-color-31bedd15);
  margin-bottom: 2.5rem;
}

.localinfo .info .content h6 {
  font-size: 22px;
  color: var(--e-global-color-126ac8d8);
  padding: 1.875rem 0;
  position: relative;
  font-size: 34px !important;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.localinfo .info .content h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5.625rem;
  border-block-start: 4px solid var(--e-global-color-31bedd15);
}

/* plastics */
.plastics-banner {
  background-image: url(../images/plastics-banner.jpg);
  background-size: cover;
  background-position: center;
}

.plastics-server .title {
  text-align: center;
}

.plastics-server .title .i {
  margin-right: 18.75rem;
}

.server.plastics-server .t ul {
  gap: 2rem 0;
}

.plastics-learn {
  background-image: url(../images/plastics-learn.jpg);
  background-size: cover;
  background-position: center;
}

.plastics-learn .container {
  padding: 10.3125rem 0;
  background-color: rgba(0, 36, 137, 0.66);
  transition: background .3s, border-radius .3s, opacity .3s;
  position: relative;
}

.plastics-learn .title {
  width: 43.75rem;
  margin: 0 auto;
}

.plastics-learn .title .t1 {
  color: var(--e-global-color-white);
}

.plastics-learn .title .cc {
  color: var(--e-global-color-white);
}

.plastics-learn .svg path {
  fill: var(--e-global-color-white);
  transform-origin: center;
  transform: rotateY(0deg);
}

.plastics-learn .content {
  width: 43.75rem;
  margin: 0 auto;
}

.plastics-learn .content .cc {
  color: var(--e-global-color-white);
  letter-spacing: 1px;
  padding-bottom: 3.125rem;
  word-break: break-all;
}

.plastics-learn .svg1 path,
.plastics-learn .svg2 path {
  fill: var(--e-global-color-31bedd15);
  transform-origin: center;
  transform: rotateY(0deg);
}

.plastics-learn2 {
  background-image: url(../images/plastics-learn1.jpg);
  background-size: cover;
  background-position: center;
}

.plastics-learn2 .container {
  background-color: none;
}

.plastics-learn3 {
  background-image: url(../images/nengli-2.jpg);
  background-size: cover;
  background-position: center;
}

.plastics-learn3 .container {
  background-color: rgba(0, 0, 0, 0.66);
}

.plastics-info {
  padding-top: 5rem;
}

.plastics-info .title {
  width: 43.75rem;
  margin: 0 auto;
}

.plastics-info .info-list {
  padding: 3.125rem 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125rem 1.25rem;
}

.plastics-info .info-item {
  width: calc(20% - (5rem / 5));
  box-shadow: 0px 0px 1.3125rem 0px rgba(0, 0, 0, .4);
}

.plastics-info .info-item .info-content .t1 {
  letter-spacing: 3px;
  color: var(--e-global-color-31bedd15);
  font-weight: 600;
}

.plastics-info .info-item .info-content .t2 {
  font-size: 18px;
  word-break: break-all;
  text-align: center;
}

.plastics-info .info-item .info-content .t3 {
  font-size: 14px;
  word-break: break-all;
}

.plasticsinfo .img img {
  max-width: 27.5rem;
}

.plasticsinfo-table {
  width: 100%;
}

.plasticsinfo-table th {
  text-align: left;
  padding: 0.625rem 0 1.25rem;
  font-size: 18px;
}

.plasticsinfo-table td {
  padding: 0.625rem 0;
}

.plasticsinfo-table td:first-child {
  font-weight: 700;
}

/* gallery */
.gallery-banner .banner-content {
  /* width: clamp(650px, 53rem, 900px); */
}

.gallery-banner .banner-content .h2 {
  /* font-size: clamp(20px, 3.025rem, 52px); */
}

.fuwu-banner .banner-content {
  /* width: clamp(580px, 48rem, 750px); */
  background: none
}

.fuwu-banner.fuwu-wuzhou-banner .banner-content,
.fuwu-banner.fuwu-zhuangpei-banner .banner-content {
  padding-left: 6rem;
  width: clamp(580px, 48rem, 830px);
}

.fuwu-banner.fuwu-wuzhou-banner .banner-content .h2 {
  /* font-size: clamp(20px, 3.125rem, 52px); */
}

.fuwu-banner .banner-content .h2 {
  /* font-size: clamp(20px, 3.76rem, 60px); */
}

.fuwu-banner .banner-content .t2 p {
  /* font-size: clamp(22px, 1.8rem, 28px); */
}



.gallery-box {
  padding: 2.5rem 0;
}

.gallery-box .container {
  padding: 0 80px;
}

.gallery-box .container .title .t1 {
  font-size: 30px;
}

.gallery-box .gallery-content {
  gap: 1.25rem;
  padding-top: 1.25rem;
}

.gallery-box .gallery-content .gallery-item {
  width: calc(25% - (1.25rem * 3 / 4));
  box-shadow: 0px 0px 1.3125rem 0px rgba(0, 0, 0, .4);
  background-color: var(--e-global-color-e8e8e8);
  overflow: hidden;
  text-align: center;
  padding-bottom: 0.625rem;
}

.gallery-box.gallery-box2 .gallery-content .gallery-item {
  width: calc(20% - (1.25rem * 4 / 5));
}

.gallery-box.wuzhou-box .gallery-content .gallery-item {
  width: calc(25% - (1.25rem * 3 / 4));
}

.gallery-box .gallery-content .gallery-item img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-box .gallery-content .gallery-item .t2 {
  font-size: 18px;
  /* letter-spacing: 3px; */
  color: var(--e-global-color-4c4c4c);
  font-weight: 600;
  padding: 1.25rem;
}

.gallery-box .gallery-content .gallery-item .t3 {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 18px;
}

/* 弹出层 */
.gallery-box .gallery-content .gallery-item img {
  cursor: pointer;
}

.gallery-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gallery-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.gallery-lightbox-close:hover {
  opacity: 0.7;
}

.gallery-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.5);
}

/* industries-sp */
.industries-sp-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../images/industries-sp-banner.jpg);
  background-size: cover;
  background-position: center;
}

.industries-sp-banner .t2 {
  text-shadow: 0 0 0.875rem var(--e-global-color-black);
}

.industries-sp-banner .btn {
  border: 1px solid var(--e-global-color-white);
}

.industries-list {
  padding: 9.375rem 0 7.5rem !important;
}

.industries-list .r ul {
  padding-top: 1.25rem;
  gap: 1.25rem 3.125rem;
}

.industries-list .r ul li {
  width: calc(25% - (3.125rem * 3 / 4)) !important;
  text-align: center;
  padding: 0 !important;
}

.industries-list .r ul li img {
  width: 3.75rem;
  height: 3.125rem;
  margin: 0 auto;
}

.industries-list .r ul li .i {
  width: 5.625rem;
  margin: 1.25rem auto;
  border-block-start: 4px solid var(--e-global-color-31bedd15);
}

.industries-list .r ul li .k {
  font-size: 18px;
  color: var(--e-global-color-126ac8d8);
}

.industries-list .r ul li .k a:hover {
  color: var(--e-global-color-31bedd15);
}

.services-banner-content {
  min-height: 39.0625rem;
  padding: 0 1.25rem;
}

.services-banner-content .text {
  width: 55%;
  text-shadow: 0px 0px 0.625rem #000;
}

.services-banner-content .text .t3 {
  letter-spacing: 1px;
  text-shadow: 0px 0px 0.625rem rgba(0, 0, 0, .3);
}

.services-banner-content .text a.btn {
  border: 1px solid var(--e-global-color-white);
  text-shadow: none;
}

.services-banner-content .text a.btn:hover {
  background-color: var(--e-global-color-white);
  color: var(--e-global-color-31bedd15);
  border: 1px solid var(--e-global-color-31bedd15);
}

.services-content {
  padding: 5rem 80px;
}

.services-content .title {
  width: 70%;
  margin-left: auto;
  padding-right: 1.25rem;
}

.services-content .content {
  padding: 0 1.25rem;
}

.services-content .item {
  display: flex;
  gap: 1.25rem;
  color: var(--e-global-color-4c4c4c);
  padding-top: 1rem;
  align-items: center;
}

.services-content .item .t {
  width: 25%;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.services-content .item .t .img {
  margin: 0;
}

.services-content .item .t .img img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.services-content .item .t .p {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  padding: 0 0.625rem;
}

.services-content .item .c {
  width: 75%;
  padding: 5px;
}

.services-content .item .c li {
  list-style: disc;
  padding: 5px;
}


/* services-list-R */
.services-banner-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../images/services-banner2.jpg) !important;
  background-size: cover;
  background-position: center;
}

.services-list-about {
  padding-bottom: 3.75rem !important;
}

.services-list-about .cc {
  min-height: auto !important;
}

.services-list-about .cc a {
  color: var(--e-global-color-27277a38);
}

.services-list-about ul {
  padding: 2.5rem 0;
}

.services-list-about ul li {
  display: flex;
  padding: 5px 0;
}

.services-list-about.wuzhou-about ul li {
  padding: 5px 0;
}

.services-list-about ul li p:nth-child(even) {
  width: 40%;
  padding: 0 5px;
}

.services-list-about ul li p:nth-child(odd) {
  width: 60%;
  padding: 0 5px;
}

.services-ask {
  padding: 3rem 80px;
}

.services-ask .title {
  margin-left: auto;
  padding: 0 40px;
}

.services-ask .content {
  padding: 2.5rem 40px 0;
}

.services-ask .content .item {
  color: var(--e-global-color-4c4c4c);
  padding: 1rem 0;
  width: 100%;
}

.services-ask .content .item .t {
  font-size: 18px;
  padding-bottom: 10px;
  color: var(--e-global-color-31bedd15);
  display: inline-block;
  position: relative;
  padding-left: 60px;
}

.services-ask .content .item .t::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(calc(-50% - 3px / 2));
  width: 50px;
  border-block-start: 2px solid var(--e-global-color-31bedd15);
}

.services-ask .content .item .t::before {
  /* content: ''; */
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  border-block-start: 2px solid var(--e-global-color-31bedd15);
}

.services-ask .content .item .c {
  padding: 5px;
}

.services-list-todo .content ul li {
  width: 25%;
}

.services-list-todo .content ul li .c {
  font-size: 14px;
}

.services-list-todo.houpian-todo .content ul li {
  width: 33.333%;
}

.services-list-about ul {
  padding: 1rem 0;
}

.plastics-list-about ul li p {
  width: 100% !important;
  position: relative;
  padding-left: 2.5rem !important;
}

.plastics-list-about ul li p::before {
  content: '\e60a';
  font-family: 'iconfont';
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

/* dialog-message */
.dialog-message {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999;
  left: 0;
  top: 0;
}

.dialog-message .container {
  width: 100%;
  height: 100%;
}

.dialog-message .message {
  padding: 2.5rem 1.25rem;
  background-color: var(--e-global-color-white);
  width: 28.125rem;
  position: relative;
  max-height: 90%;
  overflow: auto;
}

.dialog-message .message .t1 {
  font-size: 50px;
  color: var(--e-global-color-126ac8d8);
  font-weight: 700;
}

.dialog-message .message .cc {
  padding: 1.25rem 0;
}

.dialog-message .message .close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.dialog-message .message .close a {
  font-size: 24px;
  color: var(--e-global-color-4c4c4c);
}

/* contact-us */
.contactus {
  padding: 3rem 0;
}

.contactus .title {
  max-width: 570px;
  margin: 0 auto;
}

.contactus .title .cc {
  font-size: 16px;
}

.contactus-form {
  width: 570px;
  margin: 0 auto;
  padding-top: 2.5rem;
}

.contactus-form .formbox {
  padding: 0;
}

.contactus-form .field.radio-group label {
  margin-bottom: 0.9375rem;
}

.contactus-form .field.radio-group label:first-child {
  color: var(--e-global-color-black);
  font-size: 18px;
}

.contactus-form .field input[type="radio"] {
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contactus-form .field input[type="radio"]:checked {
  border-color: var(--e-global-color-31bedd15);
  box-shadow: inset 0 0 0 4px var(--e-global-color-31bedd15);
}

.contactus-form .field input:focus,
.contactus-form .field textarea:focus {
  outline: none;
  border-color: var(--e-global-color-e8e8e8);
}

.mapbox {
  margin-top: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.mapbox>div {
  width: 100%;
  height: 350px
}

/* contact-us */
.about-message {
  padding: 5rem 0;
  background-color: var(--e-global-color-e8e8e8);
  box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, .3);
  border-bottom: 2px dashed var(--e-global-color-white);
}

.about-message .container {
  padding: 0 80px;
}

.about-message .title .t1 {
  color: var(--e-global-color-31bedd15);
}

.about-message .messagebox {
  gap: 30px 50px;
}

.about-message .messageitem {
  width: calc(50% - 50px);
  overflow: hidden;
  padding-top: 1rem;
}

.about-message .messageitem .img {
  width: 12.5rem;
  height: 6.25rem;
}

.about-message .messageitem .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-message .messageitem .t1 {
  font-size: 18px;
  color: var(--e-global-color-4c4c4c);
}

.about-message .messageitem .t1 span {
  font-size: 14px;
  color: var(--e-global-color-4c4c4c);
}

.about-message .messageitem .i {
  width: 40px;
  border-block-start: 2px solid var(--e-global-color-31bedd15);
}

.about-message .messageitem .cc {
  line-height: 1.5 !important;
  font-size: 14px;
  color: var(--e-global-color-text);
}

.about-h2 {
  background-color: var(--e-global-color-e8e8e8);
}

.position {
  padding: 1.25rem 80px 0;
  color: var(--e-global-color-text);
}

.position p.pl a {
  font-size: 14px;
}

.position ul {
  padding-top: 1rem;
}

.position ul li {
  /* width: 50%; */
}

.position ul li {
  padding: 0 1.5rem;
  position: relative;
}
.position ul li:first-child {
  padding-left: 0;
}

.position ul li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background-color: var(--e-global-color-e8e8e8, #e8e8e8);
}

.position ul li a {
  transition: color 0.5s;
  font-size: 16px;
}

.position ul li:hover a,
.position ul li.active a {
  color: var(--e-global-color-27277a38);
}



.index-form-contactus {
  padding-top: 4rem;
}


@media(max-width: 1024px) {
  .min1024hidden {
    display: none;
  }

  .min1024visible {
    display: block;
  }

  .m-tel {
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, .2);
    z-index: 990;
  }

  .m-tel a {
    display: block;
    padding: 1rem 0;
  }

  .m-tel a:hover {
    background-color: var(--e-global-color-27277a38);
    color: var(--e-global-color-white);
  }

  .header .container .tel {
    width: 45%;
    padding-right: 2rem;
    color: var(--e-global-color-31bedd15);
  }

  .header .container .tel .number {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header .container .tel .number a:hover {
    color: var(--e-global-color-27277a38);
  }

  .m-nav {
    display: flex;
    left: 0;
    top: 0;
  }

  .m-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .m-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .m-nav-panel {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .m-nav-panel[data-flot="right"] {
    right: 0;
    transform: translateX(100%);
  }

  .m-nav-panel[data-flot="right"].active {
    transform: translateX(0);
  }

  .m-nav-panel[data-flot="left"] {
    left: 0;
    transform: translateX(-100%);
  }

  .m-nav-panel[data-flot="left"].active {
    transform: translateX(0);
  }

  .m-nav-close {
    padding: 1rem;
    text-align: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--e-global-color-4c4c4c);
  }

  .m-nav-content>ul>li {
    border-bottom: 1px solid var(--e-global-color-e8e8e8);
  }

  .m-nav-content>ul>li>a {
    display: block;
    position: relative;
    padding: 1rem 1.5rem;
    padding-right: 4.5rem;
    color: var(--e-global-color-4c4c4c);
    font-weight: 500;
    font-size: 16px;
  }

  .m-nav-content>ul>li>a.active {
    color: var(--e-global-color-31bedd15);
    background-color: var(--e-global-color-e8e8e8);
  }

  .m-nav-content>ul>li li.active a {
    color: var(--e-global-color-31bedd15);
  }

  i.m-nav-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  i.m-nav-arrow.rotated {
    transform: rotate(180deg);
  }

  .m-subnav {
    display: none;
    background-color: #f9f9f9;
  }

  .m-subnav.show {
    display: block;
  }

  .m-subnav li {
    border-bottom: 1px solid var(--e-global-color-e8e8e8);
  }

  .m-subnav li a {
    display: block;
    padding: 0.875rem 2.5rem;
    color: var(--e-global-color-4c4c4c);
    font-size: 14px;
  }

  body.m-nav-open {
    overflow: hidden;
  }

  .m-logo {
    width: 75%;
    margin: 0 auto 2rem;
    height: 6rem;
  }

  .m-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .services,
  .todo,
  .step,
  .index-news {
    padding: 5rem 0;
  }

  .gallery-box .container {
    padding: 0 20px;
  }

  .server,
  .plastics-info .info-list,
  .plastics-info .title,
  .todo .title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .plastics-info .title,
  .todo .title {
    width: 100%;
  }
}

@media(min-width: 768px) and (max-width: 1024px) {
  p {
    font-size: 14px;
  }

  .tt1 {
    font-size: 27px;
  }

  .about {
    gap: 10px;
  }

  .about .img {
    width: 50%;
    overflow: hidden;
  }

  .about .content {
    padding: 0 20px;
  }

  .services .content .i i {
    font-size: 35px;
  }

  .services .content .i.i2 {
    padding-top: 10px;
  }

  .services .content .k {
    font-size: 21px;
  }

  .todo .content li .k {
    font-size: 19px;
  }

  .todo .content li .c {
    font-size: 14px;
  }

  .bannerSwiper .slider-content .s {
    font-size: 14px;
  }

  .bannerSwiper .slider-content .l {
    font-size: 26px;
  }

  .bannerSwiper .slider-content .p {
    font-size: 14px;
  }

  .step .container {
    gap: 15px;
  }

  .step .l {
    width: 40%;
  }

  .step .l .cc {
    font-size: 14px;
  }

  .todo .about-list ul li p.k {
    font-size: 16px;
  }

  .plastics-info .info-item {
    width: calc(33.333% - (2.5rem / 3));
  }

  .plastics-info .info-item .info-content .t2 {
    font-size: 16px;
  }

  .services-content .title {
    width: 100%;
    padding-left: calc(20% + 1.5rem);
  }

  .services-content .item .t {
    font-size: 22px;
    width: 22%;
  }

  .tbanner .content {
    padding: 3.4375rem 20px;
  }

  .gotit-banner .cc {
    font-size: 14px;
  }

  .server .t ul li p.cc {
    font-size: 14px;
  }

  .todo .about-list {
    padding: 3.125rem 20px;
  }

  .localmap .map-content {
    padding: 0 20px;
  }

  .localmap .map-content .t {
    font-size: 18px;
  }

  .localmap .map-content .t.mb-2 {
    font-size: 18px;
  }

  .localmap .container .map {
    width: 45%;
    overflow: hidden;
  }

  .gallery-box .gallery-content .gallery-item .t2 {
    padding: 15px 10px;
  }

  .gallery-box .gallery-content .gallery-item .t3 {
    padding: 0 15px 10px 15px;
    font-size: 16px;
  }

  .localinfo .container {
    gap: 20px;
  }

  .localinfo .img {
    width: 33%;
  }

  .localinfo .info {
    padding-right: 20px;
    width: 67%;
    overflow: hidden;
  }

  .index-form .container {
    padding: 4.375rem 20px;
  }

  .about-message .messagebox {
    flex-wrap: wrap;
  }

  .about-message .messageitem {
    width: calc(33.333% - (40px / 3));
    flex-wrap: wrap;
  }
}

@media(max-width: 768px) {
  .mb-3 {
    margin-bottom: 3vw;
  }

  .mb-4 {
    margin-bottom: 4vw;
  }

  .min768hidden {
    display: none;
  }

  .min768visible {
    display: block;
  }

  .cc {
    line-height: 1.8 !important;
  }

  /* 居右显示 */
  .max768right {
    width: 45%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .plastics-info .info-item .info-content .t2 {
    font-size: 16px;
  }

  .position p.pl a {
    font-size: 14px;
  }

  .position ul {
    padding-top: 2rem;
    flex-wrap: wrap;
  }

  .position ul li {
    width: 50%;
  }

  .position ul li:nth-child(odd) {
    text-align: right;
    padding-right: 1.5rem;
    position: relative;
  }

  .position ul li:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.2em;
    background-color: var(--e-global-color-e8e8e8, #e8e8e8);
  }

  .position ul li:nth-child(even) {
    text-align: left;
    padding-left: 1.5rem;
  }

  .position ul li a {
    transition: color 0.5s;
    font-size: 16px;
  }

  .position ul li:hover a,
  .position ul li.active a {
    color: var(--e-global-color-27277a38);
  }

  .plastics-learn3 .max768right {
    /* width: 100%; */
    font-size: 16px;
  }

  .header .logo {
    padding: 0;
    width: 30%;
  }

  .header .tel p i {
    font-size: 20px;
  }

  .header .logo img {
    height: auto;
  }

  .header {
    padding-bottom: 0;
  }

  .header .container {
    padding: 0.625rem 20px;
  }

  .m-tel a {
    padding: 10px 0;
  }

  .header .container .tel {
    padding: 0;
    width: 55%;
    justify-content: space-between;
  }

  .tt1 {
    font-size: 24px;
  }

  .th2 {
    font-size: 16px;
  }

  .hr-top svg {
    height: 20px;
  }

  .hr-top .b {
    min-height: 20px;
  }

  .services .content ul {
    flex-wrap: wrap;
  }

  .services .content ul li {
    width: 50%;
  }

  .about {
    flex-wrap: wrap;
    overflow: hidden;
    padding: 60px 0 0 0 !important;
    gap: 30px;
  }

  .about .img {
    width: 100%;
    order: 2;
  }

  .about .content {
    padding: 0 20px !important;
  }

  .about .content .cc {
    min-height: auto;
  }

  .todo .title {
    width: 100%;
    padding: 0;
  }

  .todo .content ul {
    flex-wrap: wrap;
  }

  .todo .content ul li {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .services-list-todo.houpian-todo .content ul li {
    margin: 20px 0 0 0;
    width: 100%;
  }

  .houpian-todo .content {
    /* padding-top: 2rem; */
  }

  .todo .content li .i {
    max-height: none;
  }

  .todo .content li .i img {
    width: 100%;
  }

  .step {
    padding: 3rem 20px;
  }

  .step .container {
    flex-wrap: wrap;
    padding: 0;
  }

  .step .l {
    width: 100%;
    padding-bottom: 2rem;
  }

  .step .r {
    width: 100%;
  }

  .step .r ul li .s {
    font-size: 70px;
    width: 25%;
  }

  .server {
    padding: 60px 20px 0;
  }

  .server.plastics-server .t ul {
    gap: 3rem 0;
  }

  .server .t ul li {
    width: 50%;
  }

  .server .t ul li p.icon i {
    font-size: 30px;
  }

  .server .t ul li p.k {
    font-size: 18px;
  }

  .plastics-learn3 .container {
    padding: 5rem 20px;
  }

  .plastics-learn .title {
    width: 100%;
  }

  .plastics-learn .content {
    width: 100%;
  }

  .todo .about-list {
    padding: 3.125rem 0;
  }

  .todo .about-list ul {
    justify-content: flex-start;
  }

  .todo .about-list ul li {
    width: 25%;
  }

  .todo .about-list ul li i {
    font-size: 40px;
  }

  .todo .about-list ul li p.k {
    font-size: 14px;
  }

  .index-news .container {
    width: 100%;
    padding: 0;
  }

  .index-news .news-item {
    width: 50%;
  }

  .index-news.article-more {
    padding-bottom: 60px;
  }

  .index-news.article-more .news-list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .index-news.article-more .news-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0 0 !important;
  }

  .index-news.article-more .news-item .img {
    width: 30%;
  }

  .index-news.article-more .news-item .news-content {
    flex: 1;
  }

  .index-news.article-more .news-item .news-content p:nth-child(3) {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .index-news .news-item p:nth-child(4),
  .index-news .news-item .news-content p:nth-child(3) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .index-news .title {
    width: 100%;
  }

  .index-form .container {
    padding: 4.375rem 20px;
    flex-wrap: wrap;
  }

  .index-form .img {
    width: 100%;
  }

  .index-form .img img {
    max-width: 300px;
  }

  .index-form .formbox {
    width: 100%;
    padding-left: 0;
  }

  .form .field .checkcode {
    width: 9rem;
  }

  .services .content .k {
    font-size: 20px;
    line-height: 1.3;
  }

  .services .content .i.i2 i {
    padding-top: 5px;
  }

  .services .content .i i {
    font-size: 34px;
  }

  .tbanner .content {
    padding: 3.4375rem 20px;
    gap: 20px;
  }

  .tbanner a {
    padding: .876rem 0;
    width: 150px;
    font-size: 14px;
  }

  .tbanner .tb1 {
    width: calc(100% - 150px);
    font-size: 16px;
    padding: 0;
  }

  .services {
    padding: 60px 0;
  }

  .hr {
    padding-bottom: 2rem;
  }

  .todo {
    padding: 3rem 0 2.5rem 0;
  }

  .globalsvg2 svg {
    height: 20px;
  }

  .localmap {
    padding: 3rem 0;
  }

  .localmap .container {
    flex-wrap: wrap;
  }

  .localmap .container .map {
    width: 100%;
    margin-bottom: 2rem;
  }

  .localmap .map-content {
    padding: 20px;
  }

  .localmap .map-content .t {
    font-size: 16px;
  }

  .tip1 {
    padding: 1.5625rem 20px;
    font-size: 14px;
  }

  .tip2 .container {
    padding: 1.875rem 20px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .position {
    padding: 2rem 20px;
  }

  .listbox {
    flex-wrap: wrap;
    padding: 3rem 20px;
  }

  .listbox .list {
    width: 100%;
  }

  .listbox .list li {
    flex-wrap: wrap;
    padding-bottom: 4rem;
  }

  .listbox .list li .img {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .listbox .list li .img img {
    height: auto;
  }

  .listbox .rlist {
    padding: 0;
  }

  .listbox .rlist .search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
  }

  .listbox .rlist .search .k {
    margin: 0;
  }

  .listbox .rlist .search .items-center {
    margin: 0;
    flex: 1;
  }

  .article-content .overview {
    padding: 2rem 20px 0;
    overflow: hidden;
    width: 100%;
  }

  .todo,
  .step,
  .index-news,
  .plastics-info,
  .about-message {
    padding: 60px 20px 0;
    margin: 0;
  }

  .hr-nth2 {
    margin-top: 60px;
  }

  .localinfo {
    padding: 40px 0 0;
  }

  .localinfo .info {
    padding: 0 20px;
  }

  .bannerSwiper {
    height: auto;
    padding: 0 20px;
  }

  .bannerSwiper .slider-image {
    width: 80%;
  }

  .bannerSwiper .slider-content {
    padding: 0;
    width: 100%;
  }

  .bannerSwiper .slidebox {
    flex-wrap: wrap;
    gap: 20px;
  }

  .bannerSwiper .slider-content .s {
    font-size: 12px;
  }

  .bannerSwiper .slider-content .l {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .bannerSwiper .slider-content .p {
    font-size: 14px;
  }

  .bannerSwiper .slider-content .btnbox {
    padding-top: 10px;
  }

  .bannerSwiper .slider-content .l::after {
    height: 3px;
  }

  .swiper-banner {
    padding: 20px 10px;
  }

  .footer {
    padding: 1.5625rem 0;
  }

  .footer .link {
    padding: 0;
  }

  .footer .link .o {
    width: 100%;
    text-align: center;
  }

  .article-more2 .news-list .news-item {
    width: 100%;
  }

  .listbox .rlist ul.myservices li {
    /* width: 45%; */
  }

  .gallery-box {
    padding: 60px 0 0;
  }

  .gallery-box .container {
    padding: 0 20px;
  }

  .gallery-box .gallery-content {
    padding: 0;
    justify-content: space-between;
    gap: 20px;
    padding-top: 1rem;
  }

  .gallery-box .gallery-content .gallery-item {
    width: calc(50% - (20px / 2));
  }

  .gallery-box.gallery-box2 .gallery-content .gallery-item {
    width: calc(50% - (20px / 2));
  }

  .gallery-box .gallery-content .gallery-item .t2 {
    font-size: 16px;
  }

  .gallery-box .gallery-content .gallery-item .t3 {
    font-size: 14px;
    padding: 0 10px 1.25rem;
  }

  .gallery-box .gallery-content .gallery-item img {
    height: auto;
  }

  .banner-content {
    height: 70vw;
    padding: 0 20px;
    width: 100%;
    gap: 0;
    background: linear-gradient(to right, rgba(2, 56, 156, 1) 20%, rgba(2, 56, 156, 0) 100%);
    background: rgba(0, 96, 138, 0.6);
  }

  .gallery-banner .banner-content,
  .fuwu-banner .banner-content {
    width: 100%;
  }

  .gallery-banner .banner-content .h2,
  .fuwu-banner .banner-content .h2,
  .fuwu-banner.fuwu-wuzhou-banner .banner-content .h2 {
    width: inherit;
    font-size: clamp(18px, 4.88vw, 22px);
  }

  .locations-banner .banner-content .h2 {
    width: 100%;
  }

  .gallery-banner .banner-content .t2,
  .fuwu-banner .banner-content .t2 {
    /* width: 65vw; */
  }

  .fuwu-banner .banner-content .t2 p,
  .industries-list-banner .banner-content .t2 p,
  .plastics-banner .banner-content .t2 p,
  .services-list-banner .t2 p,
  .locations-banner .banner-content .t2 p {
    font-size: 16px;
    line-height: 1.5;
  }

  .fuwu-houpian-banner .banner-content .h2 {
    /* width: 52vw; */
  }

  .fuwu-banner.fuwu-wuzhou-banner .banner-content,
  .fuwu-banner.fuwu-zhuangpei-banner .banner-content,
  .industries-list-banner .banner-content,
  .locations-banner .banner-content {
    padding: 0 20px;
    width: 100%;
    background: rgba(0, 96, 138, 0.6);
  }

  .services-ask {
    padding: 60px 20px 0;
  }

  .services-ask .title {
    padding: 0;
  }

  .services-ask .content {
    padding: 10px 0;
  }

  .services-ask .content .item {
    padding: 1rem 0 0;
  }

  .services-ask .content .item p {
    text-align: left;
  }

  .services-ask .content .item .t {
    padding: 0 0 0 11px;
    width: 100%;
    text-align: left;
  }

  .services-ask .content .item .t::after {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    transform: translateY(-50%);
    border-block-start: none;
    background-color: var(--e-global-color-31bedd15);
  }

  .gotit-banner-content {
    padding: 0 20px;
  }

  .gotit-banner .title {
    width: 100%;
    padding: 2rem 0 0;
  }

  .contactus {
    padding: 2rem 20px;
  }

  .contactus-form {
    width: 100%;
  }

  .pb-60 {
    padding-bottom: 60px !important;
    margin-bottom: 0;
  }

  .pb-40 {
    padding-bottom: 40px !important;
    margin-bottom: 0;
  }

  .about-message .container {
    padding: 0;
  }

  .about-message .messagebox {
    flex-wrap: wrap;
    gap: 20px 30px;
  }

  .about-message .messageitem {
    width: calc(50% - (30px / 2));
  }

  .about-banner .banner-content {
    padding: 0 20px;
  }

  .about-banner .banner-content .t2 {
    padding: 0;
    width: 100%;
  }

  .banner-content .t1 {
    font-size: 16px;
  }

  .banner .h2 {
    /* font-size: clamp(18px, 4.88vw, 22px); */
    font-size: 22px;
    /* width: 70%; */
  }

  .banner .t2 {
    width: 100%;
  }

  .banner .t2 p {
    font-size: 14px;
  }

  .banner .t2 .p1 {
    /* line-height: 1.2; */
    /* font-size: clamp(12px, 2.88vw, 14px); */
  }

  .banner .t2 .pimg .ul {
    width: 100%;
  }

  .banner .t2 .pimg .ul li {
    padding: 0 10px;
    width: 33.333%;
  }

  .banner .t2 .pimg .ul li:nth-child(1) {
    justify-content: flex-end;
  }

  .banner .t2 .pimg .ul li:nth-child(2) {
    justify-content: center;
  }

  .banner .t2 .pimg .ul li:nth-child(3) {
    justify-content: flex-start;
  }

  .banner .t2 .pimg .ul li p {
    font-size: 14px;
  }

  .banner .t2 .pimg .ul li span {
    font-size: 12px;
  }

  .banner .t2 .pimg .ul li::before {
    font-size: 20px;
    width: 25px;
    height: 30px;
    line-height: 30px;
    border-radius: 40%;
  }

  .banner .t2 .pimg .ul li:nth-child(1)::before {
    font-size: 24px;
  }

  .services-banner-1 .t2 {
    padding: 0;
  }

  .plastics-info .title {
    width: 100%;
    padding: 0;
  }

  .plastics-info .info-list {
    padding: 2rem 0 0;
    gap: 30px 10px;
  }

  .plastics-info .info-item {
    width: calc(50% - (10px / 2))
  }

  .plastics-server .title {
    align-items: start;
  }

  .plastics-server .title h2 {
    text-align: left;
  }

  .services-banner-content .text {
    width: 100%;
  }

  .services-content .title {
    width: 100%;
    padding: 0 20px;
  }

  .localmap .map-content .t.mb-2 {
    font-size: 16px;
  }

  .m-nav-panel {
    max-width: 260px;
  }

  .footer p.gg {
    font-size: 14px;
  }

  .services-list-about ul li {
    gap: 20px;
  }

  .services-list-about ul li p {
    padding: 0;
    line-height: 1.1;
  }

  .plastics-list-about ul li p {
    padding-left: 2.5rem !important;
    line-height: 1.5;
    width: 100% !important;
  }

  .wuzhou-about .img .o .m {
    width: 130%;
  }

  .services-list-todo .content ul li .c {
    font-size: 16px;
  }

  .index-form-contactus {
    padding-top: 1rem;
  }
}

.toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background: linear-gradient(135deg, #61ce70, #52c41a);
}

.toast-error {
  background: linear-gradient(135deg, #ff4d4f, #ff7875);
}

.toast-info {
  background: linear-gradient(135deg, #6ec1e4, #1890ff);
}

.toast-icon {
  margin-right: 10px;
  font-size: 18px;
}

.hr-contactus {
  padding-bottom: 0;
}