body {
  overflow-x: hidden;
  letter-spacing: 1px;
}
.empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.empty .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.empty .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.empty .txt {
  font-size: 20px;
  font-weight: normal;
  color: #666;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
}
body {
  background-color: #f7f8fa;
  color: #333;
  font-size: 14px;
  min-width: 1200px;
}
a {
  text-decoration: none;
  color: inherit;
}
/* 全局select下拉列表样式优化 */
select option {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  background-color: #fff;
  color: #333;
  transition: background-color 0.2s ease;
}
select option:hover {
  background-color: #f0f7ff;
  color: #2363b0;
}
select option:checked {
  background-color: #e6f1fc;
  color: #2363b0;
  font-weight: 500;
}
select option:disabled {
  color: #999;
  background-color: #f5f5f5;
}
select:focus {
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  display: none;
}
/* 导航栏样式 */
.fixed-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.fixed-header-wrapper .top-tool-bar {
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.fixed-header-wrapper .top-tool-bar .center-wrap {
  width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .logo-area {
  width: 484px;
  height: 50px;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .logo-area .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .logo-area .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.6s;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action {
  display: flex;
  gap: 10px;
  align-items: center;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .carbon-platform-btn {
  height: 40px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f6b44;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  background: linear-gradient(135deg, #eefaf1 0%, #f8fffb 100%);
  border: 1px solid #7ac889;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transition: all 0.3s;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .carbon-platform-btn:hover,
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .carbon-platform-btn:focus {
  color: #fff;
  background: #0f7b4f;
  border-color: #0f7b4f;
  box-shadow: 0 8px 18px rgba(15, 123, 79, 0.18);
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn {
  width: 120px;
  height: 40px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn .picbox {
  width: 14px;
  height: 14px;
  overflow: hidden;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn .picbox {
  margin-right: 6px;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn.login-btn {
  color: #135BA8;
  background: #ECF5FF;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn.login-btn:hover {
  background: #e1efff;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn.reg-btn {
  color: #fff;
  background: #135BA8;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .btn.reg-btn:hover {
  background: #16468a;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container {
  position: relative;
  cursor: pointer;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container .user-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container .user-name:hover {
  background: #f5f5f5;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container .user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 120px;
  margin-top: 2px;
  display: none;
  z-index: 1000;
  transition: all 0.3s;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container .user-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container .user-menu a:hover {
  background: #ECF5FF;
  color: #135BA8;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container:hover .user-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .user-name-container:focus-within .user-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .logout-btn {
  font-size: 14px;
  color: #135BA8;
  text-decoration: none;
  transition: all 0.3s;
  padding: 4px 8px;
  border-radius: 4px;
}
.fixed-header-wrapper .top-tool-bar .center-wrap .user-action .user-info .logout-btn:hover {
  background: #ECF5FF;
}
.fixed-header-wrapper .main-nav-bar {
  height: 60px;
  background: #2458a8;
  /* 深蓝色背景 */
}
.fixed-header-wrapper .main-nav-bar .center-wrap {
  width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
}
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item:hover,
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item.active {
  background: #8bc34a;
  /* 绿色高亮 */
}
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item:hover .sub,
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item.active .sub {
  font-size: 12px;
  color: #fff;
}
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1;
}
.fixed-header-wrapper .main-nav-bar .center-wrap .nav-item .sub {
  font-size: 12px;
  color: #9CC3EC;
  line-height: 1;
}
/* 侧边栏 */
.cenavibox {
  position: fixed;
  top: 40%;
  right: -100%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 6px;
}
.cenavibox .cenavi {
  width: 90px;
  height: 96px;
  background: #135BA8;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  position: relative;
}
.cenavibox .cenavi::after {
  content: '';
  width: 66px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.cenavibox .cenavi .title {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  line-height: 24px;
  margin-top: 2px;
}
.cenavibox .cenavi:hover .ceicon .picbox {
  transform: rotateY(360deg);
}
.cenavibox .cenavi .txt {
  width: auto;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  flex: none;
  line-height: 40px;
  transition: all 0.5s;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
}
.cenavibox .cenavi .ceicon {
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cenavibox .cenavi .ceicon .picbox {
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.cenavibox .cenavi .ceicon .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.cenavibox .cenavi .ceicon .picbox {
  transition: transform 0.5s;
}
.cenavibox .cenavi:last-child {
  margin-bottom: 0;
}
.cenavibox .qr {
  display: none;
  position: absolute;
  right: 110px;
  bottom: 70px;
  background: #fff;
  width: 200px;
  height: 200px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.cenavibox .qr .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cenavibox .qr .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
/* 页脚区域 */
.footer-area {
  background: #1A2133;
  color: #fff;
  padding-bottom: 38px;
}
.footer-area .footer-services {
  width: 1280px;
  padding: 0 110px;
  border-bottom: 1px solid #3d414b;
  margin: 0 auto;
}
.footer-area .footer-services .center-wrap {
  height: 116px;
  display: flex;
  justify-content: space-between;
}
.footer-area .footer-services .center-wrap .service-item {
  display: flex;
  align-items: center;
}
.footer-area .footer-services .center-wrap .service-item .picbox {
  width: 34px;
  height: 34px;
  overflow: hidden;
}
.footer-area .footer-services .center-wrap .service-item .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.footer-area .footer-services .center-wrap .service-item .info {
  margin-left: 20px;
}
.footer-area .footer-services .center-wrap .service-item .info .t1 {
  font-size: 16px;
  font-weight: bold;
}
.footer-area .footer-services .center-wrap .service-item .info .t2 {
  font-size: 14px;
  color: #999;
}
.footer-area .footer-links {
  padding: 50px 0;
}
.footer-area .footer-links .center-wrap {
  width: 1280px;
  margin: 0 auto;
  display: flex;
}
.footer-area .footer-links .center-wrap .left-logo {
  width: 200px;
  margin-right: 80px;
}
.footer-area .footer-links .center-wrap .left-logo .picbox {
  width: 220px;
  height: 80px;
  overflow: hidden;
}
.footer-area .footer-links .center-wrap .left-logo .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.footer-area .footer-links .center-wrap .links-group {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.footer-area .footer-links .center-wrap .links-group .link-col:last-child {
  margin-right: 0;
}
.footer-area .footer-links .center-wrap .links-group .link-col .col-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1;
}
.footer-area .footer-links .center-wrap .links-group .link-col .col-item {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-area .footer-links .center-wrap .links-group .link-col .col-item:hover {
  color: #fff;
}
.footer-area .footer-links .center-wrap .links-group .link-col .col-item .picbox {
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.footer-area .footer-links .center-wrap .links-group .link-col .col-item .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.footer-area .footer-links .center-wrap .links-group .link-col .qr-img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.footer-area .footer-links .center-wrap .links-group .link-col .qr-img img {
  width: 108px;
  height: 108px;
  display: block;
}
.footer-area .footer-links .center-wrap .qr-box {
  width: 110px;
}
.footer-area .footer-links .center-wrap .qr-box .qr-title {
  margin-bottom: 15px;
  font-size: 16px;
}
.footer-area .footer-links .center-wrap .qr-box .qr-img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.footer-area .footer-links .center-wrap .qr-box .qr-img img {
  width: 108px;
  height: 108px;
  display: block;
}
.footer-area .footer-copyright {
  width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-area .footer-copyright .friends-link {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
  line-height: 1;
  margin-bottom: 15px;
}
.footer-area .footer-copyright .friends-link .qq {
  display: inline-block;
  transform: translateY(5px) translateX(-2px);
}
.footer-area .footer-copyright .friends-link .qq .picbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.footer-area .footer-copyright .friends-link .qq .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.footer-area .footer-copyright .friends-link .link {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
  margin: 0 5px;
}
.footer-area .footer-copyright .friends-link .link:hover {
  color: #fff;
}
.footer-area .footer-copyright .copyright {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
  line-height: 1;
}
.footer-area .footer-copyright .copyright a {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
  margin-left: 10px;
}
.footer-area .footer-copyright .copyright a:hover {
  color: #fff;
}
.footer-area .footer-copyright .copyright span {
  margin-left: 50px;
}
/* 公共占位样式 */
.comHeight {
  width: 100%;
  height: 160px;
}
/* 公共banner区 */
.com-banner-box {
  height: 400px;
  background: url() center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  user-select: none;
}
.com-banner-box .banner-content .banner-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 108px;
}
.com-banner-box .banner-content .banner-line {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #3371FE, #00CC90);
  margin: 0 auto;
  border-radius: 2px;
}
.com-banner-box .banner-content .banner-sub-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 10px;
}
.com-banner-box .banner-content .banner-desc {
  font-size: 16px;
  opacity: 0.9;
  line-height: 30px;
}
/* Notice Bar */
.notice-bar {
  background: #FFF5F5;
  height: 60px;
  line-height: 60px;
  color: #FF4E4E;
  font-size: 16px;
}
.notice-bar .center-wrap {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.notice-bar .center-wrap .picbox {
  margin-right: 6px;
}
.notice-bar .center-wrap .picbox {
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.notice-bar .center-wrap .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
/* 公共左侧菜单栏 */
.com-left-sidebar {
  width: 320px;
  background: #fff;
}
.com-left-sidebar .sidebar-header {
  height: 124px;
  color: #fff;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.com-left-sidebar .sidebar-header .zh {
  font-size: 32px;
  font-weight: bold;
}
.com-left-sidebar .sidebar-header .en {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.com-left-sidebar .menu-list .menu-item {
  border-bottom: 1px solid #f5f5f5;
}
.com-left-sidebar .menu-list .menu-item .menu-title {
  height: 70px;
  line-height: 70px;
  padding: 0 30px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.com-left-sidebar .menu-list .menu-item .menu-title:hover {
  color: #135BA8;
}
.com-left-sidebar .menu-list .menu-item .menu-title .arrow {
  position: absolute;
  right: 20px;
  top: 25px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.com-left-sidebar .menu-list .menu-item.active-group .menu-title {
  color: #fff;
  background-color: #135BA8;
}
.com-left-sidebar .menu-list .menu-item.active-group .menu-title .arrow {
  transform: rotate(225deg);
  top: 28px;
  border-color: #EEEEEE;
}
.com-left-sidebar .menu-list .menu-item .sub-menu {
  display: none;
  background: #FFFFFF;
}
.com-left-sidebar .menu-list .menu-item .sub-menu .sub-item {
  height: 60px;
  line-height: 60px;
  padding-left: 50px;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
.com-left-sidebar .menu-list .menu-item .sub-menu .sub-item.active,
.com-left-sidebar .menu-list .menu-item .sub-menu .sub-item:hover {
  color: #135BA8;
  background: #F6FBFF;
}
.com-left-sidebar .menu-list .menu-item .sub-menu .sub-item.active::before,
.com-left-sidebar .menu-list .menu-item .sub-menu .sub-item:hover::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 25px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(316deg);
}
/* 首页样式 */
.page-index {
  width: 100%;
  min-width: 1200px;
  background-color: #f8f9fa;
  /* 1. Banner */
  /* 2. Search */
  /* 3. Services */
  /* 4. Process */
  /* 5. FAQ */
  /* 6. CTA Bottom */
}
.page-index .container {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.page-index .banner {
  position: relative;
  width: 100%;
  height: 600px;
}
.page-index .banner .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .banner .swiper .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.page-index .banner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  margin: 0 5px;
  opacity: 1;
}
.page-index .banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #135BA8;
  border-radius: 50%;
}
.page-index .banner .swiper .swiper-button-prev {
  position: absolute;
  left: 66px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.page-index .banner .swiper .swiper-button-prev .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .banner .swiper .swiper-button-prev .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .banner .swiper .swiper-button-prev::after {
  display: none;
}
.page-index .banner .swiper .swiper-button-next {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: rotateY(180deg);
}
.page-index .banner .swiper .swiper-button-next .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .banner .swiper .swiper-button-next .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .banner .swiper .swiper-button-next::after {
  display: none;
}
.page-index .banner .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.page-index .banner .swiper .swiper-slide .banner_pic {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-index .banner .swiper .swiper-slide .banner_pic .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .banner .swiper .swiper-slide .banner_pic .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.6s;
}
.page-index .search-sec {
  background: #fff;
  padding: 40px 0 50px;
  text-align: center;
}
.page-index .search-sec .title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 44px;
}
.page-index .search-sec .tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.page-index .search-sec .tags span {
  cursor: pointer;
  transition: color 0.2s;
  background: #F9F9F9;
  border-radius: 20px;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
}
.page-index .search-sec .tags span:hover {
  color: #fff;
  background-color: #135BA8;
}
.page-index .search-sec .search-box {
  width: 100%;
  height: 50px;
  margin: 20px auto 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-index .search-sec .search-box input {
  width: 510px;
  border: 1px solid #ddd;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  outline: none;
}
.page-index .search-sec .search-box input::placeholder {
  color: #bbb;
}
.page-index .search-sec .search-box .search-btn {
  width: 180px;
  height: 50px;
  background: #135BA8;
  border-radius: 4px;
  background-color: #2b65ba;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  gap: 6px;
}
.page-index .search-sec .search-box .search-btn .picbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.page-index .search-sec .search-box .search-btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .search-sec .search-box .search-btn:hover {
  background-color: #204d8f;
}
.page-index .service-sec {
  padding: 110px 0 0px;
  position: relative;
  overflow: hidden;
}
.page-index .service-sec .bg-text {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  line-height: 1;
  font-weight: bold;
  z-index: 0;
  white-space: nowrap;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page-index .service-sec .container {
  position: relative;
  z-index: 1;
}
.page-index .service-sec .sec-head {
  text-align: center;
}
.page-index .service-sec .sec-head .cn {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.page-index .service-sec .sec-head .en {
  font-size: 16px;
  color: #999;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
  margin-top: 12px;
}
.page-index .service-sec .card-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.page-index .service-sec .card-list .card {
  width: 410px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #FFFFFF;
  color: #fff;
}
.page-index .service-sec .card-list .card .cardTop {
  width: 410px;
  height: 225px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 45px;
}
.page-index .service-sec .card-list .card .cardTop .picbox {
  width: 62px;
  height: 62px;
  overflow: hidden;
}
.page-index .service-sec .card-list .card .cardTop .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .service-sec .card-list .card .cardTop .name {
  font-size: 32px;
  font-weight: bold;
  line-height: 52px;
}
.page-index .service-sec .card-list .card .cardTop .sub {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1;
}
.page-index .service-sec .card-list .card .links {
  padding: 30px 10px;
  color: #000;
}
.page-index .service-sec .card-list .card .links .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-index .service-sec .card-list .card .links .row a {
  cursor: pointer;
  text-decoration: underline;
  display: block;
  padding-left: 10px;
  line-height: 30px;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
  width: 33.33%;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page-index .service-sec .card-list .card .links .row a:hover {
  color: #135BA8;
}
.page-index .process-sec {
  padding: 110px 0 0;
  position: relative;
}
.page-index .process-sec .bg-text {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  line-height: 1;
  font-weight: bold;
  z-index: 0;
  white-space: nowrap;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page-index .process-sec .container {
  z-index: 1;
}
.page-index .process-sec .sec-head {
  text-align: center;
}
.page-index .process-sec .sec-head .cn {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.page-index .process-sec .sec-head .en {
  font-size: 16px;
  color: #999;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
  margin-top: 12px;
}
.page-index .process-sec .process-list {
  margin-top: 30px;
}
.page-index .process-sec .process-list .step-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 40px;
}
.page-index .process-sec .process-list .step-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: #dcecfd;
}
.page-index .process-sec .process-list .step-item .step-head {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 26px;
}
.page-index .process-sec .process-list .step-item .step-head .num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  font-weight: bold;
  margin-right: 15px;
  letter-spacing: 1px;
  line-height: 1;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page-index .process-sec .process-list .step-item .step-head .tit {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.page-index .process-sec .process-list .step-item .step-body {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
}
.page-index .process-sec .process-list .step-item .step-body .left {
  background-image: url('/Jzw/Tpl/Home/Default/images/path4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 660px;
  height: 180px;
  position: absolute;
  left: 0;
  top: 20px;
  padding: 20px 130px 0 40px;
  box-sizing: border-box;
}
.page-index .process-sec .process-list .step-item .step-body .left .col-tit {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
}
.page-index .process-sec .process-list .step-item .step-body .left .col-desc {
  letter-spacing: 0;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  text-align: justify;
  margin-top: 12px;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.page-index .process-sec .process-list .step-item .step-body .left .col-desc span {
  color: #105A9E;
}
.page-index .process-sec .process-list .step-item .step-body .right {
  background-image: url('/Jzw/Tpl/Home/Default/images/path5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 630px;
  height: 190px;
  position: absolute;
  right: 0;
  top: 0px;
  padding: 42px 52px 0 90px;
  box-sizing: border-box;
}
.page-index .process-sec .process-list .step-item .step-body .right .col-tit {
  font-size: 20px;
  font-weight: bold;
  color: #105A9E;
  display: flex;
  align-items: center;
  line-height: 1;
}
.page-index .process-sec .process-list .step-item .step-body .right .col-tit .tag {
  font-size: 12px;
  background: #ffaa00;
  color: #7B3C00;
  padding: 0px 6px;
  margin-left: 8px;
  font-weight: normal;
  background: linear-gradient(90deg, #FFE1B4 0%, #FFEDD0 100%);
  line-height: 20px;
  border-radius: 8px 0px 8px 0px;
  position: relative;
  top: -8px;
}
.page-index .process-sec .process-list .step-item .step-body .right .col-desc {
  letter-spacing: 0;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  text-align: justify;
  margin-top: 12px;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.page-index .process-sec .process-list .step-item .step-body .right .col-desc span {
  color: #105A9E;
}
.page-index .process-sec .process-list .step-item .step-body .jiantouPic {
  width: 108px;
  height: 108px;
  position: absolute;
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
  z-index: 2;
}
.page-index .process-sec .process-list .step-item .step-body .jiantouPic .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .process-sec .process-list .step-item .step-body .jiantouPic .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .process-sec .process-list .step-item .step-pain {
  border: 1px dashed #ffcaca;
  color: #d93025;
  padding: 12px;
  font-size: 20px;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-top: 182px;
  min-height: 60px;
  background: linear-gradient(180deg, #FFF1F1 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-index .process-sec .process-list .step-item .step-pain .picbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.page-index .process-sec .process-list .step-item .step-pain .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .faq-sec {
  margin-top: 80px;
}
.page-index .faq-sec .container {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  padding: 0px 40px 40px;
}
.page-index .faq-sec .left-box {
  flex: 1;
  position: relative;
  padding-top: 172px;
}
.page-index .faq-sec .left-box .bg-txt {
  font-size: 80px;
  color: #eef2f6;
  position: absolute;
  top: 142px;
  left: -10px;
  z-index: 0;
  line-height: 1;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-stretch: condensed;
  text-fill-color: transparent;
  font-family: "Barlow";
}
.page-index .faq-sec .left-box .tit {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.page-index .faq-sec .left-box .sub {
  font-size: 16px;
  color: #999;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-top: 10px;
}
.page-index .faq-sec .left-box .help-box {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.page-index .faq-sec .left-box .help-box .h-tit {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #135BA8;
}
.page-index .faq-sec .left-box .help-box .h-sub {
  font-size: 14px;
  color: #135BA8;
  line-height: 1;
  margin-top: 10px;
}
.page-index .faq-sec .left-box .help-box .btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 180px;
  height: 50px;
  background: #135BA8;
  border-radius: 4px;
  margin-top: 20px;
  gap: 6px;
}
.page-index .faq-sec .left-box .help-box .btn-contact .picbox {
  width: 22px;
  height: 20px;
  overflow: hidden;
}
.page-index .faq-sec .left-box .help-box .btn-contact .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .faq-sec .left-box .help-box .btn-contact:hover {
  background-color: #204d8f;
}
.page-index .faq-sec .left-box .deco-chat {
  width: 193px;
  height: 240px;
  position: absolute;
  left: 328px;
  bottom: 10px;
  z-index: 0;
}
.page-index .faq-sec .left-box .deco-chat .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .faq-sec .left-box .deco-chat .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .faq-sec .right-box {
  width: 600px;
  padding-top: 40px;
}
.page-index .faq-sec .right-box .faq-item {
  background: #F9F9F9;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}
.page-index .faq-sec .right-box .faq-item.active .q-row {
  background: #F9F9F9;
}
.page-index .faq-sec .right-box .faq-item.active .q-row .toggle {
  transform: rotate(0deg);
}
.page-index .faq-sec .right-box .faq-item .q-row {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.page-index .faq-sec .right-box .faq-item .q-row .icon {
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
  color: #333;
}
.page-index .faq-sec .right-box .faq-item .q-row .txt {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.page-index .faq-sec .right-box .faq-item .q-row .toggle {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
  transform: rotate(180deg);
}
.page-index .faq-sec .right-box .faq-item .q-row .toggle .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .faq-sec .right-box .faq-item .q-row .toggle .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .faq-sec .right-box .faq-item .a-row {
  display: none;
  padding: 0 25px 25px 25px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.page-index .cta-sec {
  margin: 50px 0 80px;
}
.page-index .cta-sec .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background-image: url('/Jzw/Tpl/Home/Default/images/path7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 120px;
}
.page-index .cta-sec .container .icon {
  width: 60px;
  height: 53px;
  margin-right: 40px;
}
.page-index .cta-sec .container .icon .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-index .cta-sec .container .icon .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .cta-sec .container .text {
  flex: 1;
}
.page-index .cta-sec .container .text .t1 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  line-height: 1;
}
.page-index .cta-sec .container .text .t2 {
  font-size: 16px;
  color: #135BA8;
  line-height: 1;
  margin-top: 10px;
}
.page-index .cta-sec .container .btn {
  background-color: #135BA8;
  color: #fff;
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  gap: 6px;
}
.page-index .cta-sec .container .btn .picbox {
  width: 22px;
  height: 20px;
  overflow: hidden;
}
.page-index .cta-sec .container .btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-index .cta-sec .container .btn:hover {
  background-color: #1a428a;
}
/* 新闻列表 */
.page_Article_list {
  /* Main Content */
}
.page_Article_list .main-content-area {
  padding: 40px 0 100px 0;
  background: #fff;
}
.page_Article_list .main-content-area .center-wrap {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* Right List */
}
.page_Article_list .main-content-area .center-wrap .right-list-box {
  width: 920px;
  background: #fff;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .box-header {
  width: 100%;
  height: 70px;
  background: #F6FBFF;
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 70px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .box-header .cate-title {
  font-size: 24px;
  color: #135BA8;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container {
  width: 100%;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item {
  width: 100%;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
  cursor: pointer;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item:hover {
  border-bottom: 1px solid #135BA8 !important;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item:hover .news-title {
  color: #135BA8 !important;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 32px;
  flex-shrink: 0;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box .day {
  font-size: 24px;
  color: #999999;
  line-height: 1;
  margin-bottom: 5px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box .ym {
  font-size: 14px;
  color: #999;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box {
  width: calc(920px - 80px - 32px);
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box .news-title {
  width: 100%;
  font-size: 20px;
  line-height: 1.1;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
  white-space: nowrap;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box .news-desc {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 15px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .pagination-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn {
  height: 40px;
  line-height: 36px;
  padding: 0 15px;
  border: 1px solid #eee;
  color: #666;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  font-size: 14px;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn:hover {
  border-color: #135BA8;
  color: #135BA8;
}
.page_Article_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn.active {
  background: #135BA8;
  color: #fff;
  border-color: #135BA8;
}
/* 详情 */
.page_Article_show {
  background-color: #fff;
  /* Main Content */
}
.page_Article_show .main-content-area {
  padding: 40px 0 100px 0;
  background: #fff;
}
.page_Article_show .main-content-area .center-wrap {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* 右侧文章详情 */
}
.page_Article_show .main-content-area .center-wrap .right-article-box {
  width: 920px;
  background: #fff;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  line-height: 38px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left .tag {
  color: #333;
  font-size: 14px;
  line-height: 24px;
  padding: 0px 12px;
  border-radius: 2px;
  background: #F7F9FA;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left .date {
  color: #999;
  font-size: 16px;
  line-height: 24px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right {
  display: flex;
  gap: 10px;
  position: relative;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox {
  position: absolute;
  bottom: 50px;
  left: -80px;
  z-index: 12;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  width: 180px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox #qrcode img {
  width: 180px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox .txt {
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: -10px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s;
  position: relative;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share .picbox {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share:hover {
  transform: rotateY(360deg);
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-body .paragraph {
  font-size: 16px;
  color: #444;
  line-height: 2;
  margin-bottom: 20px;
  text-align: justify;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .article-body .paragraph.indent {
  text-indent: 2em;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .download-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .download-section .download-btn {
  width: 360px;
  height: 60px;
  line-height: 60px;
  background-color: #135BA8;
  color: #fff;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .download-section .download-btn .picbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .download-section .download-btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page_Article_show .main-content-area .center-wrap .right-article-box .download-section .download-btn:hover {
  background-color: #16468a;
}
/* 关于我们 */
.page_about {
  width: 100%;
  background-color: #fff;
  /* 通用内部居中容器 */
  /* 模块2: 简介 */
  /* 模块3: 统计 (原样式) */
  /* 模块3: 数据统计 (新设计) */
  /* 模块4: 联系我们 */
}
.page_about .content-inner {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.page_about .intro-module {
  padding: 80px 0 0;
  background-color: #fff;
}
.page_about .intro-module .content-inner {
  display: flex;
  justify-content: space-between;
}
.page_about .intro-module .left-text-box {
  flex: 1;
  padding-right: 70px;
  position: relative;
  padding-top: 30px;
}
.page_about .intro-module .left-text-box .bg-watermark {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 80px;
  font-weight: bold;
  color: #eef5fc;
  z-index: 0;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page_about .intro-module .left-text-box .main-title {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: #333;
  z-index: 1;
  line-height: 1;
}
.page_about .intro-module .left-text-box .sub-desc {
  position: relative;
  font-size: 16px;
  color: #999;
  line-height: 40px;
  z-index: 1;
}
.page_about .intro-module .left-text-box .paragraph-box {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.page_about .intro-module .left-text-box .paragraph-box .p-text {
  font-size: 16px;
  color: #555;
  line-height: 26px;
  margin-bottom: 25px;
  text-align: justify;
}
.page_about .intro-module .left-text-box .action-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 140px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  background: #135BA8;
  border-radius: 4px;
}
.page_about .intro-module .left-text-box .action-btn:hover {
  background-color: #1a427a;
  box-shadow: 0 4px 12px rgba(43, 95, 163, 0.3);
}
.page_about .intro-module .right-img-box {
  width: 640px;
  height: 380px;
}
.page_about .intro-module .right-img-box .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_about .intro-module .right-img-box .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page_about .stats-module {
  padding: 40px 0 0px;
  background-color: #fff;
}
.page_about .stats-module .module-header {
  text-align: center;
  height: 160px;
  position: relative;
  background-image: url(/jzw/Tpl/Home/Default/images/path9.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  user-select: none;
  padding-top: 54px;
}
.page_about .stats-module .module-header .title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  letter-spacing: 8px;
  z-index: 1;
  line-height: 1;
}
.page_about .stats-module .module-header .sub {
  position: relative;
  font-size: 14px;
  color: #999;
  letter-spacing: 4px;
  z-index: 1;
  margin-top: 20px;
  line-height: 1;
}
.page_about .stats-module .stats-grid {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  box-sizing: border-box;
}
.page_about .stats-module .stats-grid .stat-item {
  text-align: center;
  transition: transform 0.3s;
}
.page_about .stats-module .stats-grid .stat-item:hover {
  transform: translateY(-10px);
}
.page_about .stats-module .stats-grid .stat-item .num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #135BA8;
}
.page_about .stats-module .stats-grid .stat-item .num-row .number {
  font-size: 40px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1;
}
.page_about .stats-module .stats-grid .stat-item .num-row .unit {
  font-size: 16px;
  color: #333333;
}
.page_about .stats-module .stats-grid .stat-item .desc {
  font-size: 16px;
  color: #666;
  line-height: 1;
  margin-top: 15px;
}
.page_about .new-stats-module {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}
.page_about .new-stats-module .module-header {
  text-align: center;
  margin-bottom: 60px;
}
.page_about .new-stats-module .module-header .title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  margin-bottom: 15px;
}
.page_about .new-stats-module .module-header .sub {
  font-size: 16px;
  color: #999;
  line-height: 1;
}
.page_about .new-stats-module .new-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 40px;
  box-sizing: border-box;
}
.page_about .new-stats-module .new-stats-grid .new-stat-item {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.page_about .new-stats-module .new-stats-grid .new-stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.page_about .new-stats-module .new-stats-grid .new-stat-item .num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #135BA8;
  margin-bottom: 15px;
}
.page_about .new-stats-module .new-stats-grid .new-stat-item .num-row .number {
  font-size: 48px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1;
}
.page_about .new-stats-module .new-stats-grid .new-stat-item .num-row .unit {
  font-size: 18px;
  color: #333;
  margin-left: 8px;
}
.page_about .new-stats-module .new-stats-grid .new-stat-item .desc {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_about .contact-module {
  padding: 0px 0 80px;
  background-color: #fff;
}
.page_about .contact-module .module-header {
  text-align: center;
  position: relative;
  padding-top: 110px;
}
.page_about .contact-module .module-header .bg-watermark {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: bold;
  color: #eef5fc;
  line-height: 1;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page_about .contact-module .module-header .title {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: #333;
  z-index: 1;
  line-height: 1;
}
.page_about .contact-module .module-header .sub {
  position: relative;
  font-size: 16px;
  color: #999;
  z-index: 1;
  line-height: 40px;
}
.page_about .contact-module .contact-body {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 70px;
}
.page_about .contact-module .contact-body .info-side {
  flex: 1;
}
.page_about .contact-module .contact-body .info-side .info-item {
  display: flex;
  margin-bottom: 44px;
  gap: 20px;
}
.page_about .contact-module .contact-body .info-side .info-item:last-child {
  margin-bottom: 0;
}
.page_about .contact-module .contact-body .info-side .info-item .icon-box {
  width: 64px;
  height: 64px;
}
.page_about .contact-module .contact-body .info-side .info-item .icon-box .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_about .contact-module .contact-body .info-side .info-item .icon-box .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page_about .contact-module .contact-body .info-side .info-item .text-content {
  flex: 1;
}
.page_about .contact-module .contact-body .info-side .info-item .text-content .label {
  font-size: 16px;
  color: #333;
  line-height: 26px;
}
.page_about .contact-module .contact-body .info-side .info-item .text-content .label span {
  color: #999;
}
.page_about .contact-module .contact-body .info-side .info-item .text-content .value {
  font-size: 20px;
  color: #000;
  line-height: 30px;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page_about .contact-module .contact-body .form-side {
  width: 640px;
}
.page_about .contact-module .contact-body .form-side .input-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page_about .contact-module .contact-body .form-side .input-row .form-input {
  width: 310px;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.page_about .contact-module .contact-body .form-side .input-row .form-input:focus {
  border-color: #135BA8;
}
.page_about .contact-module .contact-body .form-side .input-row .form-input::placeholder {
  color: #ccc;
}
.page_about .contact-module .contact-body .form-side .textarea-row {
  margin-top: 20px;
}
.page_about .contact-module .contact-body .form-side .textarea-row .form-textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 14px;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.page_about .contact-module .contact-body .form-side .textarea-row .form-textarea:focus {
  border-color: #135BA8;
}
.page_about .contact-module .contact-body .form-side .textarea-row .form-textarea::placeholder {
  color: #ccc;
}
.page_about .contact-module .contact-body .form-side .submit-btn {
  width: 310px;
  height: 50px;
  line-height: 50px;
  background-color: #135BA8;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 4px;
  margin-top: 18px;
}
.page_about .contact-module .contact-body .form-side .submit-btn:hover {
  background-color: #1e457a;
}
.page_about .contact-module .contact-body .form-side .submit-btn:active {
  background-color: #153259;
}
/* 技术服务 */
.page-container {
  width: 100%;
  padding-bottom: 80px;
  background-color: #fff;
  /* 通用版心 */
  /* 3. Service System */
  /* 4. Reason Banner */
}
.page-container .center-wrap {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.page-container .service-system {
  padding: 0px 0 60px 0;
  background-color: #fff;
}
.page-container .service-system .section-header {
  text-align: center;
  position: relative;
  padding-top: 70px;
}
.page-container .service-system .section-header .bg-en {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  font-size: 80px;
  font-weight: bold;
  color: #f2f5f9;
  text-transform: uppercase;
  z-index: 1;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -6px;
  background: linear-gradient(180deg, #D1E8FF, #D1E8FF1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page-container .service-system .section-header .fg-cn {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: bold;
  color: #222;
}
.page-container .service-system .section-header .sub-cn {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #888;
  letter-spacing: 1px;
  line-height: 40px;
}
.page-container .service-system .card-list {
  margin-top: 18px;
}
.page-container .service-system .card-list .card-item {
  width: 1280px;
  height: 380px;
  background: #F8F9FA;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.page-container .service-system .card-list .card-item:last-child {
  margin-bottom: 0;
}
.page-container .service-system .card-list .card-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.page-container .service-system .card-list .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.page-container .service-system .card-list .card-item .card-img {
  width: 640px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.page-container .service-system .card-list .card-item .card-img .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-container .service-system .card-list .card-item .card-img .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.6s;
}
.page-container .service-system .card-list .card-item .card-body {
  box-sizing: border-box;
  flex: 1;
  padding: 40px;
  height: 100%;
}
.page-container .service-system .card-list .card-item .card-body .head-row .cn {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-container .service-system .card-list .card-item .card-body .head-row .cn .picbox {
  width: 36px;
  height: 36px;
  overflow: hidden;
}
.page-container .service-system .card-list .card-item .card-body .head-row .cn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-container .service-system .card-list .card-item .card-body .summary {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  margin-top: 15px;
}
.page-container .service-system .card-list .card-item .card-body .feature-list {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
.page-container .service-system .card-list .card-item .card-body .feature-list .f-item {
  width: 33%;
  text-decoration: underline;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  position: relative;
  padding-left: 10px;
  line-height: 32px;
  max-width: 100%;
  max-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page-container .service-system .card-list .card-item .card-body .feature-list .f-item::after {
  content: '';
  width: 2px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-container .service-system .card-list .card-item .card-body .feature-list .f-item:hover {
  color: #135BA8;
}
.page-container .service-system .card-list .card-item .card-body .action-btn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 27px;
}
.page-container .service-system .card-list .card-item .card-body .action-btn.outline-btn {
  background-color: #135BA8;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-container .service-system .card-list .card-item .card-body .action-btn.outline-btn .picbox {
  width: 22px;
  height: 22px;
  overflow: hidden;
}
.page-container .service-system .card-list .card-item .card-body .action-btn.outline-btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-container .reason-banner {
  display: flex;
  align-items: center;
  background-color: #fff;
}
.page-container .reason-banner .reason-content {
  background-image: url('/Jzw/Tpl/Home/Default/images/path7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1280px;
  display: flex;
  justify-content: space-between;
  height: 120px;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
}
.page-container .reason-banner .reason-content .left-box {
  display: flex;
  align-items: center;
  gap: 40px;
}
.page-container .reason-banner .reason-content .left-box .icon-box {
  width: 60px;
  height: 60px;
}
.page-container .reason-banner .reason-content .left-box .icon-box .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-container .reason-banner .reason-content .left-box .icon-box .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-container .reason-banner .reason-content .left-box .text-group .big-txt {
  font-size: 24px;
  font-weight: bold;
  color: #1a3a5a;
  line-height: 30px;
}
.page-container .reason-banner .reason-content .left-box .text-group .small-txt {
  font-size: 16px;
  color: #1a5eb0;
  line-height: 20px;
  margin-top: 3px;
}
.page-container .reason-banner .reason-content .right-stats {
  display: flex;
  gap: 50px;
}
.page-container .reason-banner .reason-content .right-stats .stat-item {
  text-align: center;
}
.page-container .reason-banner .reason-content .right-stats .stat-item .num {
  font-size: 36px;
  font-weight: bold;
  color: #135BA8;
  line-height: 1;
}
.page-container .reason-banner .reason-content .right-stats .stat-item .num small {
  font-size: 16px;
  margin-left: 2px;
}
.page-container .reason-banner .reason-content .right-stats .stat-item .lbl {
  font-size: 16px;
  color: #555;
  line-height: 1;
  margin-top: 5px;
}
/* 政策法规 */
.page_statute_list {
  /* Main Content */
}
.page_statute_list .main-content-area {
  padding: 60px 0 100px 0;
  background: #fff;
}
.page_statute_list .main-content-area .center-wrap {
  width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* Right List */
}
.page_statute_list .main-content-area .center-wrap .right-list-box {
  width: 920px;
  background: #fff;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .typeBtnList {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  line-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .typeBtnList .typeBtn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  color: #135BA8;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  background: #F6FBFF;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .typeBtnList .typeBtn.active,
.page_statute_list .main-content-area .center-wrap .right-list-box .typeBtnList .typeBtn:hover {
  color: #fff !important;
  background-color: #135BA8;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container {
  width: 100%;
  margin-top: 18px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item {
  width: 100%;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
  cursor: pointer;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item:hover {
  border-bottom: 1px solid #135BA8 !important;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item:hover .news-title {
  color: #135BA8 !important;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 32px;
  flex-shrink: 0;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box .day {
  font-size: 24px;
  color: #999999;
  line-height: 1;
  margin-bottom: 5px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .date-box .ym {
  font-size: 14px;
  color: #999;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box {
  width: calc(920px - 80px - 32px);
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box .news-title {
  width: 100%;
  font-size: 20px;
  line-height: 1.1;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
  white-space: nowrap;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .news-list-container .news-item .info-box .news-desc {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 15px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .pagination-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn {
  height: 40px;
  line-height: 36px;
  padding: 0 15px;
  border: 1px solid #eee;
  color: #666;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  font-size: 14px;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn:hover {
  border-color: #135BA8;
  color: #135BA8;
}
.page_statute_list .main-content-area .center-wrap .right-list-box .pagination-box .page-btn.active {
  background: #135BA8;
  color: #fff;
  border-color: #135BA8;
}
/* 政策法规详情 */
.page_statute_show {
  background-color: #fff;
  /* Main Content */
}
.page_statute_show .main-content-area {
  padding: 60px 0 100px 0;
  background: #fff;
}
.page_statute_show .main-content-area .center-wrap {
  display: flex;
  justify-content: space-between;
  /* 右侧文章详情 */
}
.page_statute_show .main-content-area .center-wrap .right-article-box {
  width: 920px;
  margin: 0 auto;
  background: #fff;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  line-height: 38px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left .tag {
  color: #333;
  font-size: 14px;
  line-height: 24px;
  padding: 0px 12px;
  border-radius: 2px;
  background: #F7F9FA;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-left .date {
  color: #999;
  font-size: 16px;
  line-height: 24px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right {
  display: flex;
  gap: 10px;
  position: relative;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox {
  position: absolute;
  bottom: 50px;
  left: -80px;
  z-index: 12;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  width: 180px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox #qrcode img {
  width: 180px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .qrcodebox .txt {
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: -10px;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s;
  position: relative;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share .picbox {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-header .article-meta .meta-right .icon-share:hover {
  transform: rotateY(360deg);
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-body .paragraph {
  font-size: 16px;
  color: #444;
  line-height: 2;
  margin-bottom: 20px;
  text-align: justify;
}
.page_statute_show .main-content-area .center-wrap .right-article-box .article-body .paragraph.indent {
  text-indent: 2em;
}
/* 指标打分 */
.page-score {
  width: 100%;
  position: relative;
  background-color: #fff;
  /* 主容器 */
  /* 弹窗 Modal */
}
.page-score .main-container {
  width: 1280px;
  margin: 0px auto 0px;
  position: relative;
  z-index: 10;
  min-height: 800px;
  padding-bottom: 80px;
  background-color: #fff;
  /* 头部导航 */
  /* 步骤 1: 行业选择 */
  /* 步骤 2: 表格填报 */
  /* 步骤 3: 评估结果 */
  /* 底部操作按钮行 */
}
.page-score .main-container .eval-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  height: 108px;
}
.page-score .main-container .eval-header .left-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-score .main-container .eval-header .left-brand .icon {
  width: 32px;
  height: 32px;
}
.page-score .main-container .eval-header .left-brand .icon .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-score .main-container .eval-header .left-brand .icon .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-score .main-container .eval-header .left-brand .brand-name {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  line-height: 32px;
}
.page-score .main-container .eval-header .right-steps {
  display: flex;
  align-items: center;
  background: #F2F2F2;
  border-radius: 24px;
  padding: 0 4px;
  height: 48px;
}
.page-score .main-container .eval-header .right-steps .step-item {
  font-size: 16px;
  line-height: 40px;
  width: 160px;
  color: #666;
  border-radius: 16px;
  cursor: default;
  height: 40px;
  text-align: center;
}
.page-score .main-container .eval-header .right-steps .step-item.active {
  color: #fff;
  background: #135BA8;
  border-radius: 20px;
}
.page-score .main-container .view-1 {
  margin-top: 60px;
}
.page-score .main-container .view-1 .big-tabs {
  display: flex;
  margin-bottom: 40px;
  gap: 10px;
}
.page-score .main-container .view-1 .big-tabs .tab-btn {
  width: 420px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #F8F9FA;
  font-size: 20px;
  color: #666;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.page-score .main-container .view-1 .big-tabs .tab-btn:hover,
.page-score .main-container .view-1 .big-tabs .tab-btn.active {
  background-color: #6bb900;
  color: #fff;
}
.page-score .main-container .view-1 .industry-selection-area {
  text-align: center;
  margin-top: 60px;
}
.page-score .main-container .view-1 .industry-selection-area .selection-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}
.page-score .main-container .view-1 .industry-selection-area .selection-desc {
  font-size: 16px;
  color: #888;
  line-height: 32px;
  margin-bottom: 40px;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group {
  margin-bottom: 40px;
  text-align: left;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .group-name {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid .ind-btn {
  width: 248px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #F6FBFF;
  border: 1px solid #BDDDFF;
  color: #135BA8;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid .ind-btn:hover,
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid .ind-btn.selected {
  background-color: #1a5eb0;
  color: #fff;
  border-color: #1a5eb0;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid .ind-btn.dark-btn {
  background-color: #1a5eb0;
  color: #fff;
}
.page-score .main-container .view-1 .industry-selection-area .industry-group .btn-grid .ind-btn.dark-btn:hover {
  background-color: #144a8c;
}
.page-score .main-container .view-2 {
  margin-top: 60px;
}
.page-score .main-container .view-2 .form-header {
  padding: 20px;
  border: 1px solid #dceefc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  background: #F6FBFF;
  border-radius: 10px;
  border: 1px solid #BDDDFF;
  box-sizing: border-box;
}
.page-score .main-container .view-2 .form-header .left .form-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}
.page-score .main-container .view-2 .form-header .left .sub-text {
  font-size: 16px;
  color: #999;
  line-height: 20px;
  margin-top: 5px;
}
.page-score .main-container .view-2 .form-header .form-info {
  font-size: 16px;
  color: #135BA8;
  line-height: 44px;
}
.page-score .main-container .view-2 .data-table-container {
  margin-top: 30px;
}
.page-score .main-container .view-2 .data-table-container .data-table {
  width: 100%;
  border-collapse: collapse;
}
.page-score .main-container .view-2 .data-table-container tr,
.page-score .main-container .view-2 .data-table-container th,
.page-score .main-container .view-2 .data-table-container td {
  border: 1px solid #dcdfe4;
  text-align: center;
  font-size: 12px;
}
.page-score .main-container .view-2 .data-table-container tr:first-child {
  background-color: #f3f4f6;
  color: #333;
  font-weight: bold;
  height: 46px;
}
.page-score .main-container .view-2 .data-table-container tr:first-child th {
  height: 100%;
  line-height: 46px;
}
.page-score .main-container .view-2 .data-table-container tr {
  height: 54px;
}
.page-score .main-container .view-2 .data-table-container tr td {
  height: 100%;
  line-height: 1.3;
  padding: 0 10px;
  color: #333;
  box-sizing: border-box;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-row .radio-group {
  height: 40px;
  line-height: 40px;
  background-color: #fafcff;
  display: flex;
  justify-content: flex-start;
  padding-left: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-row .radio-group label {
  display: flex;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-row .radio-group label input {
  margin-right: 10px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table {
  width: 100%;
  border-collapse: collapse;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table#table-without-standard {
  display: none;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table#table-without-water {
  display: none;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table tr:first-child {
  background-color: #fff;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table tr,
.page-score .main-container .view-2 .data-table-container tr td .sub-table th,
.page-score .main-container .view-2 .data-table-container tr td .sub-table td {
  text-align: center;
  font-size: 12px;
  height: 52px;
  line-height: 1.1;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol1 {
  width: 332px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol1[data-align="left"] {
  text-align: left;
  padding-left: 15px;
  box-sizing: border-box;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table input[data-align="left"] {
  text-align: left;
  padding-left: 10px;
  box-sizing: border-box;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol2 {
  width: 110px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol3 {
  width: 132px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol4 {
  width: 132px;
}
.page-score .main-container .view-2 .data-table-container tr td .sub-table .sonCol5 {
  width: 132px;
}
.page-score .main-container .view-2 .data-table-container .col {
  display: table-cell;
}
.page-score .main-container .view-2 .data-table-container .c1 {
  width: 70px;
}
.page-score .main-container .view-2 .data-table-container .c2 {
  width: 70px;
}
.page-score .main-container .view-2 .data-table-container .c3 {
  width: 110px;
}
.page-score .main-container .view-2 .data-table-container .c4 {
  width: 340px;
}
.page-score .main-container .view-2 .data-table-container .c5 {
  width: 80px;
}
.page-score .main-container .view-2 .data-table-container .c6 {
  width: 130px;
}
.page-score .main-container .view-2 .data-table-container .c7 {
  width: 130px;
}
.page-score .main-container .view-2 .data-table-container .c8 {
  width: 130px;
}
.page-score .main-container .view-2 .data-table-container .c9 {
  width: calc(100% - 70px - 70px - 110px - 340px - 80px - 130px - 130px - 130px);
}
.page-score .main-container .view-2 .data-table-container input.cu-input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 5px;
  text-align: center;
}
.page-score .main-container .view-2 .data-table-container input.cu-input:focus {
  border-color: #1e5aa0;
  outline: none;
  box-shadow: 0 0 4px rgba(30, 90, 160, 0.2);
}
.page-score .main-container .view-2 .data-table-container input.cu-input.highlight {
  color: #1e5aa0;
  font-weight: bold;
}
.page-score .main-container .view-3 .result-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
  height: 100px;
  background: #F6FBFF;
  border-radius: 10px;
  border: 1px solid #BDDDFF;
  padding: 0 30px;
  box-sizing: border-box;
}
.page-score .main-container .view-3 .result-header-box .r-left .r-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.page-score .main-container .view-3 .result-header-box .r-left .r-time {
  font-size: 16px;
  color: #666;
  line-height: 1;
  margin-top: 10px;
}
.page-score .main-container .view-3 .result-header-box .r-right {
  font-size: 16px;
  color: #333;
}
.page-score .main-container .view-3 .result-header-box .r-right .score {
  font-size: 32px;
  color: #00C36B;
  font-weight: bold;
}
.page-score .main-container .view-3 .result-table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
}
.page-score .main-container .view-3 .result-table tr:first-child {
  background-color: #f3f4f6;
}
.page-score .main-container .view-3 .result-table tr,
.page-score .main-container .view-3 .result-table th,
.page-score .main-container .view-3 .result-table td {
  border: 1px solid #dcdfe4;
  text-align: center;
  font-size: 14px;
  height: 46px;
}
.page-score .main-container .view-3 .result-table .c1 {
  width: 192px;
}
.page-score .main-container .view-3 .result-table .red {
  color: #FF0000;
}
.page-score .main-container .view-3 .result-table .bold {
  font-weight: bold;
}
.page-score .main-container .view-3 .result-table .bule {
  color: #007AFF;
}
.page-score .main-container .view-3 .result-table .left {
  text-align: left;
  padding-left: 15px;
  box-sizing: border-box;
}
.page-score .main-container .action-row {
  margin-top: 40px;
  text-align: center;
}
.page-score .main-container .action-row .next-btn {
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  background-color: #1e5aa0;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.page-score .main-container .action-row .next-btn:hover {
  background-color: #16437a;
}
.page-score .main-container .action-row .outline-btn {
  display: inline-block;
  width: 248px;
  height: 50px;
  background: #F6FBFF;
  line-height: 50px;
  color: #135BA8;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.page-score .main-container .action-row .outline-btn:hover {
  background-color: #16437a;
  color: #fff;
}
.page-score .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-score .modal-overlay .modal-box {
  width: 920px;
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.page-score .modal-overlay .modal-box .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #999;
  cursor: pointer;
}
.page-score .modal-overlay .modal-box .close-btn:hover {
  color: #333;
}
.page-score .modal-overlay .modal-box .modal-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
}
.page-score .modal-overlay .modal-box .modal-icon .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-score .modal-overlay .modal-box .modal-icon .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-score .modal-overlay .modal-box .modal-title {
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}
.page-score .modal-overlay .modal-box .modal-desc {
  font-size: 16px;
  color: #666;
  line-height: 20px;
  margin-top: 10px;
}
.page-score .modal-overlay .modal-box .download-btn {
  width: 360px;
  height: 60px;
  background: #135BA8;
  border-radius: 6px;
  line-height: 60px;
  color: #fff;
  margin: 0 auto 30px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.page-score .modal-overlay .modal-box .download-btn .picbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.page-score .modal-overlay .modal-box .download-btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.page-score .modal-overlay .modal-box .download-btn:hover {
  background-color: #16437a;
}
.page-score .modal-overlay .modal-box .qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-score .modal-overlay .modal-box .qr-area .qr-box {
  width: 240px;
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}
.page-score .modal-overlay .modal-box .qr-area .qr-box img {
  width: 200px;
  height: 200px;
  display: block;
}
.page-score .modal-overlay .modal-box .qr-area .qr-box .qr-txt {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  margin-top: 22px;
}
.page-score .modal-overlay .modal-box .qr-area .qr-box .time-txt {
  font-weight: normal;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  margin-top: 10px;
}
input:-internal-autofill-selected {
  border-radius: 6px !important;
}
/* 登录页面 */
.page-login {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  min-width: 1280px;
  /* 忘记密码对话框 */
}
.page-login .form-container {
  width: 380px;
}
.page-login .form-container .form-body .input-group {
  width: 100%;
  height: 48px;
  background: #F6F6F6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s;
  margin-top: 20px;
  /* 鼠标经过样式 */
  /* 聚焦状态 - 通过jQuery添加类名实现 */
}
.page-login .form-container .form-body .input-group .icon-box {
  width: 46px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-login .form-container .form-body .input-group .icon-box svg {
  stroke: #c0c4cc;
  transition: stroke 0.3s;
}
.page-login .form-container .form-body .input-group .ipt-text {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  padding-right: 15px;
  outline: none;
}
.page-login .form-container .form-body .input-group .ipt-text::placeholder {
  color: #c0c4cc;
}
.page-login .form-container .form-body .input-group:hover {
  background-color: #f0f2f5;
}
.page-login .form-container .form-body .input-group.active {
  background-color: #fff;
  border-color: #2363b0;
  box-shadow: 0 0 0 2px rgba(35, 99, 176, 0.1);
}
.page-login .form-container .form-body .input-group.active .icon-box svg {
  stroke: #2363b0;
}
.page-login .form-container .form-body .options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #999;
  margin-top: 20px;
  line-height: 1;
}
.page-login .form-container .form-body .options-row .pxember-box {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.page-login .form-container .form-body .options-row .pxember-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 0;
  background-color: #F6F6F6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  position: relative;
}
.page-login .form-container .form-body .options-row .pxember-box input[type="checkbox"]:checked::after {
  content: "✓";
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #135BA8;
  position: absolute;
  left: 0;
  top: 0;
}
.page-login .form-container .form-body .options-row .forgot-box .link-forgot {
  text-decoration: none;
  color: #999999;
  transition: color 0.3s;
  text-decoration: underline;
}
.page-login .form-container .form-body .options-row .forgot-box .link-forgot:hover {
  color: #2363b0;
}
.page-login .form-container .form-body .btn-row {
  margin-top: 30px;
}
.page-login .form-container .form-body .btn-row .btn-login {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background-color: #135BA8;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.page-login .form-container .form-body .btn-row .btn-login:hover {
  background-color: #1a4f8f;
}
.page-login .form-container .form-body .btn-row .btn-login:active {
  background-color: #154178;
}
.page-login .form-container .form-body .reg-row {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: #999;
}
.page-login .form-container .form-body .reg-row .link-reg {
  text-decoration: underline;
  color: #135BA8;
  margin-left: 5px;
  transition: opacity 0.3s;
}
.page-login .form-container .form-body .reg-row .link-reg:hover {
  opacity: 0.8;
}
.page-login .forgot-password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-login .forgot-password-dialog {
  width: 440px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.page-login .forgot-password-dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.page-login .forgot-password-dialog .dialog-header h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.page-login .forgot-password-dialog .dialog-header .close-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-login .forgot-password-dialog .dialog-header .close-btn:hover {
  color: #333;
}
.page-login .forgot-password-dialog .dialog-body {
  padding: 24px;
}
.page-login .forgot-password-dialog .dialog-body .form-group {
  margin-bottom: 20px;
}
.page-login .forgot-password-dialog .dialog-body .form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}
.page-login .forgot-password-dialog .dialog-body .form-group .input-text {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s;
}
.page-login .forgot-password-dialog .dialog-body .form-group .input-text:focus {
  outline: none;
  border-color: #135BA8;
  box-shadow: 0 0 0 2px rgba(19, 91, 168, 0.1);
}
.page-login .forgot-password-dialog .dialog-body .form-group .input-text::placeholder {
  color: #999;
}
.page-login .forgot-password-dialog .dialog-body .form-group .code-input-group {
  display: flex;
  gap: 10px;
}
.page-login .forgot-password-dialog .dialog-body .form-group .code-input-group .code-input {
  flex: 1;
}
.page-login .forgot-password-dialog .dialog-body .form-group .code-input-group .get-code-btn {
  width: 120px;
  height: 40px;
  border: 1px solid #135BA8;
  background-color: #fff;
  color: #135BA8;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.page-login .forgot-password-dialog .dialog-body .form-group .code-input-group .get-code-btn:hover:not(:disabled) {
  background-color: #f0f7ff;
}
.page-login .forgot-password-dialog .dialog-body .form-group .code-input-group .get-code-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-login .forgot-password-dialog .dialog-footer {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
}
.page-login .forgot-password-dialog .dialog-footer .cancel-btn,
.page-login .forgot-password-dialog .dialog-footer .confirm-btn {
  flex: 1;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.page-login .forgot-password-dialog .dialog-footer .cancel-btn {
  background-color: #fff;
  color: #666;
}
.page-login .forgot-password-dialog .dialog-footer .cancel-btn:hover {
  border-color: #999;
}
.page-login .forgot-password-dialog .dialog-footer .confirm-btn {
  background-color: #135BA8;
  border-color: #135BA8;
  color: #fff;
}
.page-login .forgot-password-dialog .dialog-footer .confirm-btn:hover {
  background-color: #16468a;
  border-color: #16468a;
}
/* 左侧品牌区域 */
.brand-side {
  width: 800px;
  height: 100%;
  position: relative;
}
.brand-side .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.brand-side .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.6s;
}
.brand-side .copyright {
  width: 100%;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #999;
  line-height: 1;
  text-align: center;
}
/* 右侧 */
.login-side {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.login-side .form-header {
  text-align: center;
}
.login-side .form-header .welcome-text {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  line-height: 44px;
}
.login-side .form-header .tip-text {
  font-size: 14px;
  color: #999;
  line-height: 20px;
}
.page-register {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  min-width: 1280px;
}
.page-register .form-container {
  width: 440px;
  padding: 40px 0;
}
.page-register .form-container .form-header {
  margin-bottom: 30px;
}
.page-register .form-container .form-header .welcome-text {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-register .form-container .form-header .tip-text {
  font-size: 14px;
  color: #999;
  line-height: 1.4;
}
.page-register .form-container .box-body {
  padding: 0 20px;
}
.page-register .form-container .box-body .form-item {
  position: relative;
  width: 100%;
  height: 48px;
  background-color: #F6F6F6;
  border-radius: 6px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  /* 预留边框位置防止抖动 */
  transition: all 0.3s;
  /* 会员类型下拉框特殊样式 */
  /* 验证码框特殊样式 */
  /* 省市区三级联动样式 */
  /* 交互状态 */
  /* 错误状态 */
}
.page-register .form-container .box-body .form-item .icon-area {
  width: 46px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-register .form-container .box-body .form-item .icon-area svg {
  transition: stroke 0.3s;
}
.page-register .form-container .box-body .form-item .ipt {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #333;
  padding-right: 15px;
  outline: none;
}
.page-register .form-container .box-body .form-item .ipt::placeholder {
  color: #999;
}
.page-register .form-container .box-body .form-item.select-mode {
  background-color: #ecf5ff;
  /* 浅蓝背景 */
  cursor: pointer;
  height: 48px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.page-register .form-container .box-body .form-item.select-mode .text-display {
  flex: 1;
  font-size: 14px;
  color: #2363b0;
  font-weight: 500;
}
.page-register .form-container .box-body .form-item.select-mode .arrow-area {
  width: 46px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-register .form-container .box-body .form-item.select-mode .dropdown-list {
  display: none;
  /* 默认隐藏 */
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 10;
  padding: 5px 0;
}
.page-register .form-container .box-body .form-item.select-mode .dropdown-list .dd-opt {
  padding: 12px 15px;
  font-size: 14px;
  color: #666;
  transition: background 0.2s;
}
.page-register .form-container .box-body .form-item.select-mode .dropdown-list .dd-opt:hover {
  background-color: #f5f7fa;
  color: #2363b0;
}
.page-register .form-container .box-body .form-item.select-mode .dropdown-list .dd-opt.active {
  color: #2363b0;
  font-weight: bold;
  background-color: #ecf5ff;
}
.page-register .form-container .box-body .form-item.select-mode:hover {
  background-color: #e6f1fc;
}
.page-register .form-container .box-body .form-item.select-mode.focused {
  background-color: #fff;
  border-color: #2363b0;
  box-shadow: 0 0 0 2px rgba(35, 99, 176, 0.1);
}
.page-register .form-container .box-body .form-item.select-mode.focused .icon-area svg {
  stroke: #2363b0;
}
.page-register .form-container .box-body .form-item.verify-item {
  padding-right: 120px;
  position: relative;
}
.page-register .form-container .box-body .form-item.verify-item .btn-send-code {
  width: 110px;
  height: 40px;
  background: #135BA8;
  border-radius: 6px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  user-select: none;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.page-register .form-container .box-body .form-item.verify-item .btn-send-code:hover {
  background-color: #1a4f8f;
}
.page-register .form-container .box-body .form-item.verify-item .btn-send-code.disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.page-register .form-container .box-body .form-item.address-item .address-selector {
  flex: 1;
  display: flex;
  gap: 8px;
  height: 100%;
  overflow: hidden;
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select {
  flex: 1;
  min-width: 0;
  height: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: #333;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding: 0 24px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select:hover {
  border-color: #2363b0;
  box-shadow: 0 2px 8px rgba(35, 99, 176, 0.1);
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select:focus {
  border-color: #2363b0;
  box-shadow: 0 0 0 3px rgba(35, 99, 176, 0.15);
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select option {
  background-color: #fff;
  color: #333;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select option:last-child {
  border-bottom: none;
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select option:hover {
  background-color: #f0f7ff;
  color: #2363b0;
}
.page-register .form-container .box-body .form-item.address-item .address-selector .address-select option:checked {
  background-color: #e6f1fc;
  color: #2363b0;
  font-weight: 500;
}
.page-register .form-container .box-body .form-item:hover {
  background-color: #f0f2f5;
}
.page-register .form-container .box-body .form-item:hover.select-mode {
  background-color: #e6f1fc;
}
.page-register .form-container .box-body .form-item.focused {
  background-color: #fff;
  border-color: #2363b0;
  box-shadow: 0 0 0 2px rgba(35, 99, 176, 0.1);
  /* 省市区select聚焦状态 */
}
.page-register .form-container .box-body .form-item.focused .icon-area svg {
  stroke: #2363b0;
}
.page-register .form-container .box-body .form-item.focused .address-select {
  background-color: #fff;
}
.page-register .form-container .box-body .form-item.error {
  border-color: #f56c6c;
  animation: shake 0.5s;
}
.page-register .form-container .box-body .agree-row {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.page-register .form-container .box-body .agree-row .checkbox-box {
  cursor: pointer;
  height: 16px;
  line-height: 1;
}
.page-register .form-container .box-body .agree-row .checkbox-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 0;
  background-color: #F6F6F6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  position: relative;
}
.page-register .form-container .box-body .agree-row .checkbox-box input[type="checkbox"]:checked::after {
  content: "✓";
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #135BA8;
  position: absolute;
  left: 0;
  top: 0;
}
.page-register .form-container .box-body .agree-row .agree-text a {
  color: #135BA8;
  text-decoration: underline;
}
.page-register .form-container .box-body .agree-row .agree-text a:hover {
  color: #1a4f8f;
}
.page-register .form-container .box-body .btn-submit {
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background: #135BA8;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 30px;
}
.page-register .form-container .box-body .btn-submit:hover {
  background-color: #1a4f8f;
}
.page-register .form-container .box-body .bottom-link {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-top: 28px;
  line-height: 1;
}
.page-register .form-container .box-body .bottom-link a {
  color: #2363b0;
  text-decoration: none;
  border-bottom: 1px solid #2363b0;
  margin-left: 5px;
  padding-bottom: 1px;
}
.page-register .form-container .box-body .bottom-link a:hover {
  opacity: 0.8;
}
/* 材料预审 */
.pdf-container {
  max-width: 920px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.pdf-container .ue-pdf-viewer {
  font-size: 0;
  line-height: 0;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pdf-container .ue-pdf-viewer-header {
  display: flex;
  align-items: center;
  user-select: none;
  height: 40px;
  color: #4d4d4d;
  background: #f2f2f2;
  font-size: 14px;
  line-height: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 12px;
}
.pdf-container .ue-pdf-viewer-header a {
  display: inline-block;
  background: url(//fe.508sys.com/ueditor_1_2/image/pdf/icon_pdf.svg) no-repeat center / 13px 14px;
  width: 13px;
  height: 14px;
  flex-basis: 13px;
  margin-right: 8px;
}
.pdf-container .ue-pdf-viewer-header div {
  margin-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
  flex: 1;
}
.pdf-container .ue-pdf-viewer-body {
  position: relative;
  flex: 1;
  min-height: 800px;
}
.pdf-container .ue-pdf-viewer-body iframe {
  width: 100%;
  height: 100%;
  min-height: 800px;
  border: none;
}
.pdf-container .ue-pdf-viewer-resize {
  height: 8px;
  background-color: #f2f2f2;
  cursor: ns-resize;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.pdf-container .ue-pdf-viewer-resize::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 2px;
  background-color: #ccc;
  border-radius: 1px;
}
.pdf-container .pdf-info {
  padding: 15px;
  height: 40px;
  border-top: 1px solid #e0e0e0;
  background-color: #F2F2F2;
}
.confirm-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.confirm-dialog {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 400px;
  max-width: 90%;
  overflow: hidden;
  animation: dialogSlideIn 0.3s ease-out;
}
.confirm-dialog .dialog-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.confirm-dialog .dialog-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.confirm-dialog .dialog-header .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
}
.confirm-dialog .dialog-header .close-btn:hover {
  background: #f5f5f5;
  color: #333;
}
.confirm-dialog .dialog-body {
  padding: 24px 20px;
  text-align: center;
}
.confirm-dialog .dialog-body p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.confirm-dialog .dialog-footer {
  padding: 0 20px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.confirm-dialog .dialog-footer button {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #d9d9d9;
}
.confirm-dialog .dialog-footer button.cancel-btn {
  background: #fff;
  color: #333;
}
.confirm-dialog .dialog-footer button.cancel-btn:hover {
  border-color: #135BA8;
  color: #135BA8;
}
.confirm-dialog .dialog-footer button.confirm-btn {
  background: #135BA8;
  color: #fff;
  border-color: #135BA8;
}
.confirm-dialog .dialog-footer button.confirm-btn:hover {
  background: #16468a;
  border-color: #16468a;
}
.page_search .searchbox .title {
  text-align: center;
  font-size: 22px;
  color: #333;
  font-weight: 600;
}
.page_search .searchbox .nolist {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 50px auto;
  min-height: 400px;
}
.page_search .searchbox .searchlist {
  margin-top: 10px;
}
.page_search .searchbox .searchlist .sitem {
  border-bottom: 1px solid #EBEBEB;
  padding: 20px;
  position: relative;
}
.page_search .searchbox .searchlist .sitem::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: #E60021;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s;
}
.page_search .searchbox .searchlist .sitem:hover::after {
  width: 100%;
}
.page_search .searchbox .searchlist .sitem:hover .hang1 .p1 span:last-child {
  color: #E60021;
}
.page_search .searchbox .searchlist .sitem:last-child {
  border-bottom: none;
}
.page_search .searchbox .searchlist .sitem .hang1 .p1 {
  max-width: 100%;
  max-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 32px;
  float: left;
  font-size: 20px;
  color: #333;
}
.page_search .searchbox .searchlist .sitem .hang1 .p1:hover {
  color: #E51A1F;
}
.page_search .searchbox .searchlist .sitem .hang1 .p1 span {
  display: inline-block;
}
.page_search .searchbox .searchlist .sitem .hang1 .p1 span:first-child {
  float: left;
  font-size: 16px;
  color: #fff;
  background: #E51A1F;
  box-sizing: border-box;
  max-width: 200px;
  padding: 0 10px;
}
.page_search .searchbox .searchlist .sitem .hang1 .p1 span:last-child {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  max-width: 900px;
  box-sizing: border-box;
  padding-left: 10px;
  transition: all 0.3s;
}
.page_search .searchbox .searchlist .sitem .hang1 .p2 {
  float: right;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  padding-top: 4px;
}
.page_search .searchbox .searchlist .sitem .desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  max-width: 100%;
  max-height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page_search .searchbox .pagination-box {
  margin: 50px 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page_search .searchbox .pagination-box .page-btn {
  height: 40px;
  line-height: 36px;
  padding: 0 15px;
  border: 1px solid #eee;
  color: #666;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  font-size: 14px;
}
.page_search .searchbox .pagination-box .page-btn:hover {
  border-color: #135BA8;
  color: #135BA8;
}
.page_search .searchbox .pagination-box .page-btn.active {
  background: #135BA8;
  color: #fff;
  border-color: #135BA8;
}
.page_search .pages {
  margin-top: 0.6px;
  text-align: center;
}
.page_search .pages a {
  display: inline-block;
  min-width: 0.16px;
  padding: 0 0.14px;
  line-height: 0.4px;
  height: 0.4px;
  font-size: 0.16px;
  font-weight: 400;
  color: #999999;
  background: #FFFFFF;
  border: 0.01px solid #E0E0E0;
  margin-right: 0.1px;
}
.page_search .pages a:hover {
  background: #EA5504;
  border: 0.01px solid transparent;
  color: #ffffff;
}
.page_search .pages .active {
  background: #EA5504;
  border: 0.01px solid transparent;
  color: #ffffff;
}
.page_search .search {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  height: 50px;
  padding-left: 16px;
  box-sizing: border-box;
  margin-bottom: 60px;
}
.page_search .search label {
  height: 100%;
}
.page_search .search .input {
  width: 550px;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
  border: 1px solid #E51A1F;
  border-right: none;
}
.page_search .search .input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.page_search .search .input::-webkit-input-placeholder {
  /*WebKit browsers*/
  color: rgba(51, 51, 51, 0.5);
}
.page_search .search .input::-moz-input-placeholder {
  /*Mozilla Firefox*/
  color: rgba(51, 51, 51, 0.5);
}
.page_search .search .input::-ms-input-placeholder {
  /*Internet Explorer*/
  color: rgba(51, 51, 51, 0.5);
}
.page_search .search .search-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  width: 68px;
  height: 100%;
  border-radius: 0 6px 6px 0;
  background: #E51A1F;
}
.page_search .search .search-btn .picbox {
  width: 22px;
  height: 24px;
  overflow: hidden;
}
.page_search .search .search-btn .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
/* 确认对话框样式 */
.confirm-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.confirm-dialog {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 400px;
  max-width: 90%;
}
.confirm-dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.confirm-dialog .dialog-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.confirm-dialog .dialog-header .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}
.confirm-dialog .dialog-header .close-btn:hover {
  color: #333;
}
.confirm-dialog .dialog-body {
  padding: 20px;
}
.confirm-dialog .dialog-body .form-group {
  margin-bottom: 16px;
}
.confirm-dialog .dialog-body .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
.confirm-dialog .dialog-body .form-group .input-text {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.confirm-dialog .dialog-body .form-group .input-text:focus {
  outline: none;
  border-color: #135BA8;
}
.confirm-dialog .dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.confirm-dialog .dialog-footer button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.confirm-dialog .dialog-footer button.cancel-btn {
  background: #fff;
  color: #333;
}
.confirm-dialog .dialog-footer button.cancel-btn:hover {
  background: #f5f5f5;
}
.confirm-dialog .dialog-footer button.confirm-btn {
  background: #135BA8;
  color: #fff;
  border-color: #135BA8;
}
.confirm-dialog .dialog-footer button.confirm-btn:hover {
  background: #16468a;
}
