.dialog-model {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 22;
}
.dialog-model .dialog-model-button button {
  margin-right: 6px;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 768px) {
  .banner-container {
    height: 400px;
  }
}
.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.banner-slide.active {
  display: block;
}
.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 10;
  color: white;
}
@media (max-width: 768px) {
  .banner-content {
    width: 95%;
  }
}
.banner-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.banner-subtitle {
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .banner-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.banner-cta {
  display: inline-block;
  padding: 12px 32px;
  background-color: #e90a11;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #e90a11;
  cursor: pointer;
}
.banner-cta:hover {
  background-color: #d81d1d;
  border-color: #d81d1d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 10, 17, 0.3);
}
.banner-cta:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .banner-cta {
    padding: 10px 24px;
    font-size: 1rem;
  }
}
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.banner-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.banner-nav:active {
  transform: translateY(-50%) scale(0.95);
}
@media (max-width: 768px) {
  .banner-nav {
    width: 40px;
    height: 60px;
    font-size: 18px;
  }
}
.banner-nav-prev {
  left: 20px;
}
.banner-nav-next {
  right: 20px;
}
.banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner-indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}
.banner-indicator.active {
  width: 30px;
  border-radius: 6px;
  background: white;
  border-color: white;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background-color: #eb2525;
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background-color: #c71b1b;
  color: #f3d1d1;
}
.btn-primary:hover:not(:disabled) {
  background-color: #d81d1d;
}
.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover:not(:disabled) {
  background-color: white;
  color: #f06969;
}

.tabs-wrapper {
  margin-top: 20px;
}
.tabs-wrapper .product-tab__wrapper {
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 20px;
}
.tabs-wrapper .product-tab__wrapper .product-tabs {
  display: flex;
  gap: 12px;
  flex: 1;
}
.tabs-wrapper .product-tab__wrapper .product-tab {
  background: none;
  padding: 10px 20px;
  border-radius: 9999px;
  cursor: pointer;
  color: #374151;
}
.tabs-wrapper .product-tab__wrapper.desktop {
  justify-content: flex-start;
  padding: 0 0 16px 0;
}
.tabs-wrapper .product-tab__wrapper.desktop .product-tab {
  margin-right: 12px;
  border: 1px solid #e5e7eb;
}
.tabs-wrapper .product-tab__wrapper.desktop .product-tab.active {
  background: #cb0620;
  color: #fff;
  border-color: transparent;
}
.tabs-wrapper .product-tab__wrapper.mobile {
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}
.tabs-wrapper .product-tab__wrapper.mobile .product-tab {
  flex: 1;
  text-align: center;
}
.tabs-wrapper .product-tab__wrapper.mobile .product-tab.active {
  background: none;
  color: #cb0620;
  border-radius: 0;
  border-bottom: 2px solid #cb0620;
}

.edit-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 12px 0;
  cursor: pointer;
}

.alum-album {
  width: 100%;
  margin: 0 auto;
}
.alum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.alum-grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) {
  .alum-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.alum-thumb {
  padding-bottom: 10px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}
.alum-thumb:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.alum-thumb-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.alum-thumb-img img {
  display: block;
  width: 100%;
  height: 220px;
}
.alum-thumb-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  padding: 10px 0;
  text-align: center;
}
.alum-thumb-desc {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
  text-align: center;
}
.alum-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.alum-modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 24px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
}
.alum-modal-img {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 8px;
  margin-bottom: 20px;
}
.alum-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
}
.alum-modal-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  text-align: center;
}
.alum-modal-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.alum-btn {
  padding: 8px 20px;
  background: #1677ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.alum-btn:hover {
  background: #0958d9;
}
.alum-btn-close {
  background: #aaa;
}
.alum-btn-close:hover {
  background: #666;
}

/* productionList.less - rounded card layout, 3 per row */
.product-list {
  padding: 30px 16px;
  background: #ffffff;
}
.banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top center;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.product-list-inner {
  margin: 0 auto;
}
.product-list-header {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 30px;
  margin-bottom: 15px;
}
.product-list-header .list-title {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.product-list-header .product-tab__more {
  position: absolute;
  max-width: 120px;
  right: 26px;
  bottom: -6px;
  z-index: 2;
}
.product-list-header .product-list-title {
  font-size: 20px;
  color: #111827;
  text-align: center;
}
.product-list-header .product-sub-title {
  font-size: 14px;
  margin-bottom: 32px;
  color: #6b7280;
  text-align: center;
}
@media (max-width: 640px) {
  .product-list-header .product-list-title {
    text-align: left;
    padding-left: 10px;
  }
  .product-list-header .product-sub-title {
    padding-left: 10px;
    text-align: left;
  }
}
.more-link__wrapper {
  flex: 1;
  margin-left: auto;
}
.more-link__wrapper a {
  display: block;
  padding-bottom: 10px;
  font-size: 12px;
  color: #DC2626;
}
.more-link__wrapper a.tx-right {
  text-align: right;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.product-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 240px;
}
.product-body {
  padding: 12px 14px;
}
.product-title {
  font-size: 16px;
  margin: 0;
  color: #111827;
}
@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-image img {
    height: 220px;
  }
}

/* Styles for technical strength component */
.tech-strength {
  padding: 32px 16px;
  background: #F3F4F6;
}
.tech-inner {
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.tech-left {
  flex: 2 1 0;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}
.tech-right {
  flex: 1 1 360px;
  line-height: 32px;
  padding: 12px 16px;
}
.tech-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #111827;
}
.tech-item {
  margin-bottom: 14px;
}
.tech-item-title {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #DC2626;
}
.tech-item-desc {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .tech-inner {
    flex-direction: column;
  }
  .tech-left,
  .tech-right {
    width: 100%;
  }
}

.home .todo-wrapper,
.home .chart-wrapper {
  display: flex;
  justify-content: space-between;
}

.weichu-footer {
  display: flex;
  justify-content: center;
  margin-top: 66px;
}

.weichu-header {
  display: flex;
  height: 64px;
  align-items: center;
}
.weichu-header .logo {
  width: 180px;
}
.weichu-header .separator-line {
  width: 1px;
  height: 32px;
  margin: 16px 16px;
  background-color: #7D7E7D;
}
.weichu-header .slogan {
  font-size: 14px;
}
.weichu-header .slogan p {
  margin: 0;
  padding: 0;
}

.login-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}
.login-form-wrapper .login-form {
  width: 468px;
  border: #dcdcdc solid 1px;
  border-radius: 2px;
  padding: 40px 32px;
}
.login-form-wrapper .login-form input {
  height: 44px;
  border-radius: 2px;
}
.login-form-wrapper .login-form #captchaUrl {
  border: #dcdcdc solid 1px;
  border-radius: 2px;
  padding: 5px;
}
.login-form-wrapper .login-form .ant-btn-primary {
  width: 248px;
  background-color: #b01307;
}

.product-album {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-album .album-photo {
  position: relative;
  min-width: 480px;
  height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-album .album-photo {
    min-width: 100%;
    height: 300px;
  }
}
.product-album .album-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.product-album .album-photo .album-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-size: 16px;
  border-radius: 0 0 12px 12px;
}
.product-album .album-controls {
  display: flex;
  align-items: center;
  min-width: 480px;
  justify-content: center;
  margin-top: 16px;
}
.product-album .album-controls button {
  margin: 0 12px;
  padding: 6px 18px;
  border: none;
  background: #1677ff;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.product-album .album-controls button:hover {
  background: #0958d9;
}
.product-album .album-controls span {
  font-size: 15px;
  color: #333;
}

.detail-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 10px;
}
.detail-wrapper .album-area {
  width: 35%;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .detail-wrapper {
    flex-direction: column;
  }
  .detail-wrapper .album-area {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.detail-wrapper .desc-area {
  flex: 1;
  line-height: 28px;
}
.detail-wrapper .desc-area .main-title {
  margin-bottom: 6px;
  font-size: 32px;
  font-weight: 600;
  color: #950404;
  text-align: left;
}
.detail-wrapper .desc-area .sub-title {
  font-size: 12px;
  color: #d00b0b;
}
.detail-wrapper .description-features {
  width: 100%;
  word-wrap: break-all;
  text-overflow: hidden;
  color: #4b5563;
}
.detail-wrapper .description-features li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  line-height: 28px;
}
.detail-wrapper .description-features li .icon-wrapper {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.detail-wrapper .description-features li .text-wrapper {
  flex: 1;
}
.detail-wrapper .desc-flex {
  display: flex;
  margin-bottom: 8px;
}
.detail-wrapper .desc-flex dt {
  width: 80px;
  text-align: right;
  font-weight: 600;
  color: #4b5563;
  align-top: top;
}
.detail-wrapper .desc-flex dt span {
  display: inline-block;
}
.detail-wrapper .desc-flex dt span:first-child {
  margin-right: 32px;
}
.detail-wrapper .desc-flex dd {
  flex: 1;
  color: #6b7280;
  margin-left: 8px;
}
.product-title {
  margin-bottom: 12px;
  padding: 10px 16px;
  color: #9e0707;
}
.product-title .main-title {
  font-size: 28px;
  font-weight: 600;
}
.product-title .sub-title {
  font-size: 12px;
  margin-top: 4px;
  color: #d00b0b;
}
.product-params-table {
  padding: 0  16px 16px 16px;
}
.product-params-table table {
  border-left: #d1d1d1 1px solid;
  border-top: #d1d1d1 1px solid;
  width: 100%;
  border-collapse: collapse;
}
.product-params-table table th {
  background: #EFEFEF;
}
.product-params-table table th,
.product-params-table table td {
  border-right: #d1d1d1 1px solid;
  border-bottom: #d1d1d1 1px solid;
  padding: 12px 8px;
  text-align: left;
  font-size: 14px;
  color: #374151;
}

/* news-list.less */
.news-list {
  padding: 36px 16px;
  background: #F3F4F6;
}
.news-inner {
  margin: 0 auto;
}
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.news-banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top center;
}
.news-banner.news {
  background-image: url(https://www.weichu168.com/cn/upload/images/202212/16716044721456.jpg);
}
.news-banner.news-dev {
  background-image: url(https://www.weichu168.online/cn/upload/images/202212/16716044721456.jpg);
}
.news-tabs {
  display: flex;
  gap: 10px;
  position: relative;
  padding-bottom: 8px;
}
.news-tab {
  background: none;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  border-radius: 9999px;
  cursor: pointer;
  color: #374151;
  position: relative;
  z-index: 2;
}
.news-tab.active {
  background: #cb1010;
  color: #fff;
  border-color: transparent;
}
/* underline that moves with GSAP */
.news-more {
  color: #cb1010;
  text-decoration: none;
  font-size: 14px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.news-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.news-image {
  width: 100%;
  height: 140px;
  display: block;
  background-color: #f8fafc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px 60px;
  /* house icon size */
}
/* house icon as background (inline SVG) */
.news-image {
  /* inline SVG: gray house with 50% opacity */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27><path fill=%27%236b7280%27 fill-opacity=%270.5%27 d=%27M12 3l9 8h-3v7h-4v-5H10v5H6v-7H3z%27/></svg>");
}
.news-body {
  padding: 10px 12px;
}
.news-title {
  font-size: 15px;
  margin: 0 0 6px 0;
  color: #111827;
}
.news-subtitle {
  font-size: 13px;
  color: #4b5563;
  margin: 0 0 8px 0;
}
.news-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
}
@media (max-width: 1023px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-detail {
  padding: 12px;
  margin: -20px -10px;
}
.news-detail .new-detail-tags a {
  display: inline-block;
  padding: 6px 12px;
  margin-right: 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}
.news-detail .new-detail-tags a:nth-child(1) {
  background: #cbeafe;
  color: #0284c7;
}
.news-detail .new-detail-tags a:nth-child(2) {
  background: #cdface;
  color: #08a532;
}
.news-detail .new-detail-tags a:nth-child(3) {
  background: #efdeff;
  color: #7c3aed;
}
.news-detail .news-detail-title {
  margin: 16px 0 10px 0;
  font-size: 24;
  font-weight: 600;
  color: #111827;
  text-align: center;
}
.news-detail .news-detail-date {
  line-height: 32px;
  text-align: center;
  color: #2b2b2c;
  font-size: 16px;
}
.news-detail .news-detail-content {
  line-height: 28px;
  color: #4b5563;
  font-size: 14px;
}
.news-detail .news-detail-content p {
  margin-bottom: 16px;
}
.news-detail .news-detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
}

.contact-name .banner {
  width: 100%;
  height: 200px;
  background: url('https://www.weichu168.online/cn/upload/images/202212/16716044363260.jpg') no-repeat 0 0;
}
.contact-name h2 {
  padding: 0 10px;
  line-height: 32px;
  font-size: 18px;
}
.contact-name .contact-address__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px;
}
.contact-name .contact-address__wrapper .address-left {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 66%;
  box-sizing: border-box;
  text-align: center;
  line-height: 28px;
}
.contact-name .contact-address__wrapper .address-left .contact-form__wrapper {
  width: 80%;
  text-align: left;
}
.contact-name .contact-address__wrapper .address-right {
  flex: 1;
  padding-left: 10px;
  text-align: left;
  line-height: 28px;
}
.contact-name .contact-address__wrapper .address-right .image-wrapper {
  padding: 10px;
}
.contact-name .contact-address__wrapper .address-right .image-wrapper img {
  display: inline-block;
  border: #d1d1d1 1px solid;
}

.faq-list .faq-banner {
  background: linear-gradient(90deg, #2563EB, #4338CA);
  min-height: 160px;
  line-height: 160px;
  text-align: center;
}
.faq-list .faq-banner h1 {
  font-family: 'Microsoft YaHei', sans-serif;
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}
.faq-list .faq-banner .ant-input-search {
  max-width: 400px;
  margin: 0 auto;
}
.faq-list .ant-collapse {
  margin: 20px;
}

.hire-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
}
.hire-title {
  margin-bottom: 16px;
  color: #333;
}
.hire-table {
  min-width: 800px;
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hire-table th,
.hire-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  text-align: left;
}
.hire-table th:nth-child(0),
.hire-table td:nth-child(0) {
  text-align: center;
}
.hire-table thead {
  background: #f5f6fa;
}
.hire-table tbody tr:hover {
  background: #f0f6ff;
}
.hire-table a {
  color: #1677ff;
  text-decoration: underline;
}
.hire-table a:hover {
  color: #0958d9;
}
.hire-action-button {
  position: relative;
}

.about-wrapper .banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top center;
}
.about-wrapper .banner.company {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16716056851830.jpg');
}
.about-wrapper .banner.company-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16716056851830.jpg');
}
.about-wrapper .banner.culture {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16716052136508.jpg');
}
.about-wrapper .banner.culture-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16716052136508.jpg');
}
.about-wrapper .banner.environment {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16723637349612.jpg');
}
.about-wrapper .banner.environment-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16723637349612.jpg');
}
.about-wrapper .banner.honor {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16716163746094.jpg');
}
.about-wrapper .banner.honor-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16716163746094.jpg');
}
.about-wrapper .banner.workshop {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16723637349612.jpg');
}
.about-wrapper .banner.workshop-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16723637349612.jpg');
}
.about-wrapper .banner.hire {
  background-image: url('https://www.weichu168.com/cn/upload/images/202212/16716056851830.jpg');
}
.about-wrapper .banner.hire-dev {
  background-image: url('https://www.weichu168.online/cn/upload/images/202212/16716056851830.jpg');
}
.about-wrapper .tabs-wrapper {
  margin-top: 20px;
  padding-left: 10px;
}
.about-wrapper .about-content {
  padding: 10px 20px;
  line-height: 28px;
  color: #444;
}
.about-wrapper .about-content .culture-content {
  margin: 0 auto;
  text-align: center;
}
.about-wrapper .about-content .culture-content p {
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}
.about-wrapper .about-content .culture-content p b {
  display: block;
  width: 90px;
  text-align: right;
}
.about-wrapper .about-content .workshop-content {
  margin-bottom: 20px;
  text-align: left;
  line-height: 28px;
  color: #444;
}

.project-wrapper .banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top center;
}
.project-wrapper .banner.project {
  background-image: url(https://www.weichu168.com/cn/upload/images/202212/16716043294729.jpg);
}
.project-wrapper .banner.project-dev {
  background-image: url(https://www.weichu168.online/cn/upload/images/202212/16716043294729.jpg);
}
.project-wrapper .project-content {
  padding: 20px 10px;
}

/* Styles for EnterpriseHeader (navigator) */
.enterprise-header {
  background: #ffffff;
}
.enterprise-header .container {
  margin: 0 auto;
  padding: 0 16px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav-item {
  position: relative;
}
.nav-link,
.nav-button {
  color: #374151;
  padding: 6px 8px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.nav-button {
  /* remove native button appearance */
  background: none;
  border: none;
}
.nav-link:hover,
.nav-button:hover {
  color: #2563eb;
}
.nav-dropdown {
  position: absolute;
  left: 0;
  margin-top: 0;
  width: 12rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  display: none;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  line-height: 32px;
  color: #374151;
  text-decoration: none;
}
.nav-dropdown a:hover {
  background: #f9fafb;
  color: #2563eb;
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 16px;
}
/* Remove default button appearance inside header */
.enterprise-header button {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #4b5563;
}
.enterprise-header button:hover {
  color: #2563eb;
}
/* Mobile */
.mobile-toggle {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #374151;
}
.mobile-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  z-index: 21;
}
.mobile-link,
.mobile-submenu-button {
  display: block;
  width: 100%;
  padding: 6px 8px;
  line-height: 28px;
  text-align: left;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}
.mobile-submenu-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  background: none;
  line-height: 40px;
  border: none;
}
.mobile-link:hover,
.mobile-submenu-button:hover {
  background: #f9fafb;
  color: #2563eb;
}
.mobile-submenu {
  margin-top: 6px;
  padding-left: 12px;
}
.mobile-submenu a {
  padding: 6px 8px;
}
/* Indicators/responsive */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav-desktop {
    display: none;
  }
}

/* FooterNav styles */
.footer-nav {
  color: #fff;
  padding: 36px 0 18px 0;
}
/* Layout: row split 70/30 */
.footer-nav-inner {
  margin: 0 auto;
  padding: 0 16px;
}
.footer-nav-row {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-nav-menus {
  flex: 0 1 70%;
  display: flex;
  gap: 48px;
}
.footer-nav-col {
  min-width: 160px;
}
.footer-nav-address {
  flex: 0 1 30%;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  padding-left: 12px;
}
.footer-nav-company {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.footer-nav-info {
  margin-bottom: 4px;
}
.footer-nav-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-nav-link:hover {
  color: #fff;
}
.footer-nav-copyright {
  text-align: center;
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .footer-nav-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-nav-menus {
    flex: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-nav-address {
    flex: none;
    padding-left: 0;
    margin-top: 12px;
    text-align: center;
  }
  .footer-nav-col {
    min-width: 0;
  }
}

.weichu-portal .ant-layout {
  height: calc(100vh - 80px);
}
.weichu-portal .ant-layout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #dcdcdc;
}
.weichu-portal .ant-layout-header .logo img {
  height: 48px;
}
.weichu-portal .ant-layout-sider {
  overflow-y: scroll;
  border-right: solid 1px #dcdcdc;
}
.weichu-portal .ant-layout-footer {
  border-top: solid 1px #dcdcdc;
  background-color: #111;
}

body {
  margin: 0;
  padding: 0;
}
* {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  color: #DC2626;
  text-decoration: none;
}
.weichu-page {
  margin: 10px;
}
.weichu-page .filters .ant-select {
  width: 120px;
}
h2 {
  margin: 10px 0;
}

/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid}}}.static{position:static}.container{width:100%}.block{display:block}.flex{display:flex}.grid{display:grid}.inline{display:inline}.inline-block{display:inline-block}.cursor-pointer{cursor:pointer}.resize{resize:both}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.tailwind-test{color:red}@layer utilities{.test-fixed{background-color:#fff;width:100%;position:fixed;top:0;left:0;right:0;box-shadow:0 1px 3px #0000001a}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}

