/**
 * 公共style.css
 */
/* CSS初始样式 */
html,
body,
header,
nav,
main,
section,
footer,
aside,
table,
thead,
tbody,
tr,
td,
th,
div,
span,
ul,
ol,
li,
dd,
dt,
dl,
form,
input,
select,
textarea,
button,
label,
pre,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
i,
em,
img,
strong,
a {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 20px;
  color: #333333;
  font-family: "微软雅黑";
  background-color: #ffffff;
}

ul,
ol,
li {
  list-style: none;
}

i,
em,
span {
  font-style: normal;
  display: inline-block;
}

input,
button {
  outline: none;
  -webkit-appearance: none;
  border-style: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
  -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

button {
  cursor: pointer;
}

textarea {
  outline: none;
  -webkit-appearance: none;
  border-style: none;
}

a:link {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:visited {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:hover {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:active {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}

video {
  max-width: 100%;
}

.inline {
  display: inline-block;
}

.hide {
  display: none;
}

.flex {
  display: flex;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.fs16 {
  font-size: 16px;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.cursor {
  cursor: pointer;
}

.clearf:after {
  content: "";
  display: block;
  clear: both;
}

.elip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maxwidth {
  max-width: 1200px;
  margin: 0 auto;
}

/* 头部 */
#header {
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 80px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

#header .header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#header .logo {
  width: 175px;
  padding: 13px 0;
}

#header .logo a,
#header .logo img {
  width: 100%;
  height: 100%;
}

#header .nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

#header .nav > li {
  position: relative;
}

#header .nav > li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 0;
  margin: 0 25%;
  transition: width 0.5s ease-in;
  transform-origin: left;
  background-color: #4269ff;
}

#header .nav > li.active::after {
  transition: width 0s;
}
#header .nav > li:last-child::after {
  display: none;
}
#header .nav > li:hover::after {
  width: 50%;
}

header:hover .nav > li.active::after {
  width: 50%;
}

#header .nav > li > a {
  color: #333333;
  margin: 0 18px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  word-wrap: break-word;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 3em;
}

#header .nav > li.active > a,
#header .nav > li:hover > a {
  color: #4269ff;
  font-size: 18px;
  font-weight: bold;
}

#header .nav > li .nav_c {
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: 100%;
  margin-top: 1px;
  transform: translateX(-50%);
  border-top: 0 solid transparent;
}

#header .nav > li .nav_c {
  padding: 0;
  left: 50%;
  width: 140px;
  transition: border 600ms;
  box-shadow: 0px 12px 10px -15px #000;
  background-color: #ffffff;
  transition: padding 600ms;
}

#header .nav > li:hover .nav_c {
  padding: 8px 0;
}

#header .nav > li .nav_c > li {
  height: 0;
  overflow: hidden;
  transition: height 600ms;
}

#header .nav > li:hover .nav_c > li {
  line-height: 46px;
  height: 46px;
}

#header .nav > li .nav_c > li a {
  font-weight: normal;
  line-height: 46px;
  font-size: 14px;
  text-align: center;
  color: #333333;
}

#header .nav > li .nav_c > li a:hover {
  color: #4269ff;
}

#header .header_menu {
  display: none;
}

#header .cell {
  display: flex;
  justify-content: flex-end;
  margin: 0 20px;
  font-size: 16px;
  line-height: 80px;
  align-items: center;
}

#header .applybtn {
  margin: 22px 0;
  width: 100px;
  padding: 0 15px;
  color: #fff;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  border-radius: 2px;
  background-color: #f45555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#header .applybtn:hover {
  background-color: #d54040;
}

/* 主体 */
main {
  padding-top: 80px;
}

main h1.module_title {
  color: #222222;
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

/* 尾部 */
#footer {
  width: 100%;
  background-color: #151b26;
}

#footer .tail {
  height: 100px;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #ffffff;
}

#footer .tail .tailContent {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .tail div {
  display: flex;
  align-items: center;
}

#footer .tail div img {
  margin-right: 20px;
  width: 40px;
  height: 40px;
}

#footer .Content {
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
}

#footer .Content .Content_nav {
  border-right: 1px solid #ffffff;
  padding-right: 130px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

#footer .Content .F1 {
  flex: 1;
}
#footer .Content .F1:hover {
  opacity: 0.8;
}
#footer .Content .firstA {
  font-size: 20px;
  text-align: left;
  color: #ffffff;
}
#footer .Content .firstA:nth-child(2) {
  margin-bottom: 13px;
  margin-top: 15px;
  font-size: 16px;
}
#footer .Content .FirstUl {
  margin-top: 20px;
}

#footer .Content .FirstUl li a {
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  line-height: 36px;
}

#footer .Content .FirstUl li {
  color: #ffffff;
  font-size: 14px;
  text-align: left;
  line-height: 21px;
}

#footer .Content .IMGAll {
  display: flex;
  text-align: center;
}

#footer .Content .IMGAll .img-1 img {
  width: 88px;
  height: 88px;
  margin-top: 20px;
}

#footer .Content .IMGAll .img-1 + .img-1 {
  margin-left: 46px;
}

#footer .Content .IMGAll .img-1 p {
  font-weight: normal;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

#footer .Last {
  padding: 28px 0;
  border-top: 1px solid #ffffff;
  text-align: center;
}

#footer .Last .Cover {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}

#footer .Last .Cover .Num {
  display: inline;
  color: #4269ff;
  font-weight: bold;
  font-size: 18px;
}

/* 申请试用弹窗 */
#approval.open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.8);
}

#approval .approvalBox {
  clear: both;
  display: none;
  width: 760px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10002;
  box-sizing: border-box;
  border-radius: 0px 50px 0px 50px;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  overflow: hidden;
}

#approval.open .approvalBox {
  display: block;
}

#approval .approvalBox .shut {
  color: #333;
  position: absolute;
  right: 30px;
  top: 15px;
  width: 30px;
  cursor: pointer;
  z-index: 12;
  text-align: center;
  line-height: 30px;
  font-size: 36px;
}

#approval .approvalBox .bgImg {
  float: left;
  width: 250px;
  height: 500px;
  background: url(../img/approval/approval.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#approval .approvalBox .wechat_img {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#approval .approvalBox .apply-title {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 15px;
}

#approval .approvalBox .wechat_img img {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto 10px;
}

#approval .approvalBox .scan-tip {
  font-size: 24px;
  color: #fffefe;
  font-weight: 400;
  margin-top: 10px;
}

#approval .approvalBox .subBox {
  float: left;
  width: 510px;
  height: 500px;
  text-align: center;
  padding-top: 24px;
  box-sizing: border-box;
}

#approval .approvalBox .subInfo .userInfo {
  width: 390px;
  height: 40px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 5px 12px;
  font-size: 14px;
}
#approval .approvalBox .subInfo .userInfo .label {
  width: 84px;
  text-align: right;
}
#approval .approvalBox .subInfo .userInfo>div:not(.label) {
  flex:1;
  margin-right: 20px;
  position: relative;
}

#approval .approvalBox .subInfo li p {
  position: absolute;
  lef: 0;
  bottom: -15px;
  color: #f15533;
  font-size: 12px;
  line-height: 14px;
}

/* 错误提示抖动动画 */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

#approval .approvalBox .subInfo li p.shake {
  animation: shake 0.5s ease-in-out;
}

#approval .approvalBox .subInfo .userInfo input {
  width: 100%;
  height: 30px;
  font-size: 14px;
  padding-left: 16px;
  border: 1px solid #EAEDF0;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
}

#approval .approvalBox .formFoot {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

#approval .approvalBox .formFoot button {
  color: #ffffff;
  width: 180px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  background-color: #f45555;
  vertical-align: text-bottom;
}

#approval .approvalBox .formFoot button:not(.load):hover {
  background: #d54040;
}

#approval .approvalBox .formFoot button.load {
  opacity: 0.8;
}

#approval .approvalBox .formFoot button:before {
  display: none;
  content: "";
  position: relative;
  width: 1.2em;
  height: 1.2em;
  left: -5px;
  background: url("../img/load.png") center/100% 100% no-repeat;
}

#approval .approvalBox .formFoot button.load:before {
  display: inline-block;
  vertical-align: inherit;
  animation: rotateAnimation linear 1s infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#approval .approvalBox .cell {
  width: 134px;
  margin: 20px auto;
  line-height: 22px;
  font-size: 16px;
  color: #ffffff;
}

#approval .approvalBox .cell i {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-top: 2px;
  background-size: cover;
  background-image: url("../img/header//phone.png");
}

/* 步骤指示器样式 */
#approval .steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

#approval .step-item {
  display: flex;
  align-items: center;
}

#approval .step-line {
  width: 60px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 10px;
}

#approval .step-item .step-num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

#approval .step-item .step-text {
  font-size: 14px;
  color: #999;
  margin-left: 8px;
}

#approval .step-item.active .step-num {
  background: #4269FF;
}

#approval .step-item.active .step-text {
  color: #4269FF;
  font-weight: bold;
}

#approval .step-item.completed .step-num {
  background: #4269FF;
}

/* 上传区域样式 */
#approval .upload-box {
  width: 100%;
  height: 200px;
  border: 2px dashed #dcdfe6;
  background: #FBFBFB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  background: url("../img/approval/bg.png") center / auto 90% no-repeat;
}

#approval .upload-box:hover {
  border-color: #4269FF;
}

#approval .upload-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4269FF;
  padding: 10px 20px;
  border-radius: 50px;
}

#approval .upload-icon {
  width: 16px;
  height: 16px;
  background: url(../img/approval/photo.png) center/100% 100% no-repeat;
}

#approval .upload-text {
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}

#approval .upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

#approval .delete-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  background: #dd524d;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

#approval .upload-box.uploading::after {
  content: '上传中...';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4269FF;
  font-weight: bold;
}

#approval .upload-tips span {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  display: block;
}

#approval .getCode {
  position: absolute;
  right: 10px;
  top: 50%;
  cursor: pointer;
  color: #4269FF;
  transform: translateY(-50%);
}

#approval .getCode.disabled {
  color: #999;
  cursor: not-allowed;
}

#approval .button-group {
  display: flex;
  gap: 10px;
}

#approval .button-group button {
  flex: 1;
}

#approval .prevStep {
  background-color: #fff!important;
  color: #d54040!important;
  border: 1px solid #d54040;
}

#approval .step-form {
  display: block;
}

#approval .step-form[data-step="2"] {
  display: none;
}

/* 自定义 Toast 提示框 */
.toast-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 10003;
  max-width: 300px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.toast-message.fade-out {
  animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* 自定义下拉选择框样式 */
#approval .select-wrapper {
  position: relative;
  flex: 1;
  margin-right: 20px;
}

#approval .select-wrapper input[name="enterpriseTypeDisplay"] {
  width: 100%;
  height: 30px;
  font-size: 14px;
  padding-left: 16px;
  padding-right: 30px;
  border: 1px solid #EAEDF0;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  background: #fff;
}

#approval .select-wrapper input[name="enterpriseTypeDisplay"]::placeholder {
  color: #999;
}

#approval .select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 12px;
  pointer-events: none;
}

#approval .select-wrapper.open .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

#approval .select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #EAEDF0;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#approval .select-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

#approval .select-dropdown li:hover {
  background: #f5f5f5;
}

#approval .select-dropdown li.selected {
  background: #4269FF;
  color: #fff;
}

/* 留言弹窗 */
#leaveWord .leaveWord {
  display: none;
  padding-bottom: 28px;
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 294px;
  z-index: 996;
  border-radius: 10px 10px 10px 10px;
  background: #ffffff;
  box-shadow: 0 2px 10px 0 #0000001a;
}

#leaveWord.open .leaveWord {
  display: block;
}

#leaveWord .FORM {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#leaveWord .FORM .firstTitle {
  padding: 28px 28px 16px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  color: #333333;
}

#leaveWord .FORM .secondP {
  font-weight: 400;
  width: 236px;
  height: 35px;
  font-size: 14px;
  text-align: left;
  color: #666666;
}

#leaveWord .FORM .thirdText {
  margin-top: 20px;
}

#leaveWord .FORM .thirdText textarea {
  resize: none;
  width: 238px;
  color: black;
  box-sizing: border-box;
  padding: 19px 20px 74px 20px;
  height: 128px;
  border-radius: 10px 10px 10px 10px;
  background: #ffffff;
  outline: none;
  border: 1px solid #ccc;
}

#leaveWord .FORM .forthInput div {
  text-align: center;
  width: 236px;
}

#leaveWord .FORM .forthInput .InputItem {
  margin-top: 20px;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv {
  display: flex;
  border-bottom: 1px solid #666;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv input {
  width: 210px;
  outline: none;
  border: none;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv img {
  margin-right: 6px;
  margin-top: 7.5px;
  width: 16px;
  height: 16px;
}

#leaveWord #FormBtn {
  margin-top: 28px;
  width: 238px;
  height: 48px;
  background: #4269ff;
  border: none;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

#leaveWord #FormBtn:active {
  opacity: 0.7;
}

#leaveWord #FormBtn.load {
  opacity: 0.8;
}

#leaveWord #FormBtn:before {
  display: none;
  content: "";
  position: relative;
  width: 1.2em;
  height: 1.2em;
  left: -5px;
  background: url("../img/load.png") center/100% 100% no-repeat;
}

#leaveWord #FormBtn.load:before {
  display: inline-block;
  vertical-align: middle;
  animation: rotateAnimation linear 1s infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#leaveWord .blockYuan {
  position: fixed;
  z-index: 996;
  bottom: 184px;
  right: -15px;
  width: 50px;
  height: 50px;
  transition: right 0.3s ease;
}
#leaveWord .blockYuan:hover {
  right: 15px;
}

#leaveWord .firstDiv p {
  position: relative;
}

#leaveWord .firstDiv p {
  position: absolute;
  font-size: 12px;
  color: #f15533;
  text-align: right;
  white-space: nowrap;
  font-weight: normal;
}

#leaveWord .blockYuan button {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background: url("../img/icon01.png") center/100% no-repeat;
  border-radius: 8px 0 0 8px;
}

#leaveWord.open .blockYuan button {
  background: url("../img/icon02.png") center/100% no-repeat;
}

#leaveWord .rotate {
  margin-left: 2px;
  margin-top: 5px;
  transform: rotate(180deg);
  /* 图标旋转 90 度 */
}

@media (max-width: 768px) {
  #leaveWord .blockYuan {
    display: none;
  }

  #leaveWord #popup {
    display: none;
  }

  #leaveWord .firstDiv {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
}

@media screen and (max-width: 1150px) {
  #header .header_right {
    display: none;
  }
}

/* 移动端 */
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }

  /* 头部 */
  #header {
    height: 5.6rem;
  }

  #header .logo {
    width: 10.55rem;
    height: 2.8rem;
    padding: 1.4rem;
  }

  #header .nav {
    display: none;
    width: 100%;
    top: 5.6rem;
    position: fixed;
    flex-direction: column;
    height: calc(100vh - 5.6rem);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #e1e1e1;
  }

  #header.open .nav {
    display: block;
  }

  #header .nav > li {
    margin: 0 2rem;
    border-bottom: 1px solid #e1e1e1;
  }
  #translate .translateSelectLanguage {
    margin: 1rem 0;
  }
  #header .nav > li:last-child {
    margin: 0 2rem;
  }
  #header .nav > li::after {
    display: none;
  }

  #header.open .nav > li > a {
    color: #333333;
    display: block;
    margin: 0;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: left;
    line-height: 5rem;
  }

  #header.open .nav .activeMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #header.open .nav .activeMobile::after {
    content: "";
    width: 6px;
    height: 6px;
    margin: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 600ms;
  }

  #header.open li.open .activeMobile::after {
    transform: rotate(225deg);
  }

  #header.open .nav > li .nav_c {
    padding: 0;
    width: auto;
    margin-top: 0;
    position: static;
    box-shadow: initial;
    transform: initial;
  }

  #header.open .nav > li.open .nav_c {
    padding: 0.2rem 0 0.75rem;
  }

  #header .nav > li.open::after {
    display: none;
  }

  #header.open .nav > li .nav_c > li {
    height: 0;
    line-height: 3.2rem;
  }

  #header.open .nav > li.open .nav_c > li {
    height: 3.2rem;
  }

  #header .nav > li .nav_c > li a {
    width: 100%;
    color: #666666;
    font-size: 1.4rem;
    text-align: left;
    line-height: 3.2rem;
  }


  #header .header_menu {
    display: initial;
    width: 2.6rem;
    padding: 1.5rem 2rem;
    background: url("../img/header/menu.png") center/2.1rem auto no-repeat;
  }

  #header.open .header_menu {
    background-image: url("../img/header/menu_active.png");
  }

  #header.open .applybtn {
    width: auto;
    position: fixed;
    display: inline-block !important;
    bottom: 2rem;
    left: 2rem;
    margin: 0;
    padding: 0;
    color: #333333;
    font-size: 1.6rem;
    line-height: 3.6px;
    background-color: #fff;
  }

  main {
    padding-top: 5.6rem;
  }

  main h1.module_title {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  /* 尾部 */
  #footer .tail {
    display: none;
  }

  #footer .Content {
    display: block;
    padding: 2rem;
  }

  #footer .Content .Content_nav {
    width: auto;
    display: block;
  }
  #footer .Content .firstA:nth-child(2) {
    font-size: 1.3rem;
    margin-bottom: 0rem;
    margin-top: -1.5rem;
  }
  #footer .Content .IMGAll {
    margin-top: -1rem;
  }
  #footer .Content .firstA {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 4.5rem;
    font-size: 1.6rem;
    line-height: 4.5rem;
    font-weight: bold;
  }
  #footer .Content .Content_nav {
    border: none;
  }
  /* #footer .Content_nav .firstA::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 600ms;
  } */

  #footer .Content_nav .firstA.open::after {
    transform: rotate(225deg);
  }

  #footer .Content_nav .FirstUl {
    margin-top: 0;
    padding-bottom: 0;
    transition: all 600ms;
    border-bottom: 1px solid #ffffff;
  }

  #footer .Content_nav .firstA.open + .FirstUl {
    padding-bottom: 0.8rem;
  }

  #footer .Content_nav .FirstUl li {
    height: 0;
    transition: all 600ms;
    overflow: hidden;
  }

  #footer .Content_nav .firstA.open + .FirstUl li {
    height: 3.2rem;
  }

  #footer .Content_nav .FirstUl li a {
    width: 100%;
    font-size: 1.4rem;
    text-align: left;
    line-height: 3.2rem;
  }

  #footer .Content_nav .FirstUl li a:hover {
    color: #ccc;
  }

  #footer .Content .Content_info {
    display: flex;
    flex-direction: column-reverse;
  }

  #footer .Content_info .IMGAll .img-1 img {
    width: 8.5rem;
    height: 8.5rem;
    margin-top: 2rem;
  }

  #footer .Content_info .FirstUl {
    margin-top: 0.1rem;
  }

  #footer .Content .FirstUl li {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }

  #footer .Last {
    margin: 0 2rem;
  }

  #footer .Last .Cover {
    padding: 1.2rem 0;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }

  #footer .Last .Cover .Num {
    font-size: 1.8rem;
  }

  /* 申请试用弹窗 */

  #approval .approvalBox {
    width: 30rem;
    padding: 2rem;
    border-radius: 0;
    transform: translate(-50%, -50%);
  }

  #approval .approvalBox::before {
    content: "申请试用";
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
  }
  #approval .approvalBox .shut {
    right: 2rem;
    top: 2rem;
    text-align: right;
    font-size: 3rem;
    line-height: 3rem;
  }

  #approval .approvalBox .bgImg {
    display: none;
  }

  #approval .approvalBox .subBox {
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
  }

  #approval .steps {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  #approval .step-item .step-num {
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 1rem;
  }

  #approval .step-item .step-text {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }

  #approval .step-line {
    width: 3rem;
    height: 0.1rem;
  }

  #approval .approvalBox .subInfo .userInfo {
    width: 100%;
    height: auto;
    min-height: 4rem;
    display: flex;
    align-items: center;
    margin: 0 0 1.2rem 0;
    padding: 0;
  }

  #approval .approvalBox .subInfo .userInfo .label {
    display: none;
  }

  #approval .approvalBox .subInfo .userInfo>div:not(.label) {
    width: 100%;
    margin-right: 0;
  }

  #approval .approvalBox .subInfo li p {
    position: absolute;
    left: 0;
    bottom: -1.4rem;
    font-size: 1rem;
    padding-top: 0;
    margin-top: 0;
    white-space: normal;
    line-height: 1.2rem;
  }

  #approval .approvalBox .subInfo .userInfo input,
  #approval .approvalBox .subInfo .userInfo select {
    width: 100%;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    margin-top: 0;
    border-radius: 0.4rem;
  }

  #approval .select-wrapper input[name="enterpriseTypeDisplay"] {
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    padding-right: 2.5rem;
  }

  #approval .select-arrow {
    right: 1rem;
    font-size: 1rem;
  }

  #approval .select-dropdown {
    max-height: 12rem;
    font-size: 1.4rem;
  }

  #approval .select-dropdown li {
    padding: 0.8rem 1rem;
  }

  #approval .getCode {
    font-size: 1.2rem;
  }

  #approval .approvalBox .formFoot {
    padding-bottom: 0;
    margin-top: 1rem;
  }

  #approval .approvalBox .formFoot button {
    width: 100%;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.4rem;
    border-radius: 0.4rem;
  }

  #approval .button-group {
    display: flex;
    gap: 0.8rem;
  }

  #approval .button-group button {
    flex: 1;
    margin-top: 1rem;
  }

  #approval .upload-box {
    height: 15rem;
    width: 100%;
    border-radius: 0.8rem;
  }

  #approval .upload-placeholder {
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
  }

  #approval .upload-icon {
    width: 2rem;
    height: 2rem;
  }

  #approval .upload-text {
    font-size: 1.4rem;
    margin-left: 0.5rem;
  }

  #approval .upload-tips span {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  #approval .delete-btn {
    width: 2rem;
    height: 2rem;
    line-height: 1.8rem;
    font-size: 1.6rem;
  }

  #approval .approvalBox .cell {
    display: none;
  }
}

/* ============================================
   企业工商查询功能样式
   ============================================ */

/* 工商查询按钮容器 */
.company-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 企业全称输入框 */
.company-search-wrapper input[name="enterpriseFullName"] {
  flex: 1;
  width: calc(100% - 88px);
}

/* 工商查询按钮 */
.searchCompanyBtn {
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  user-select: none;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}

.searchCompanyBtn:hover {
  background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.searchCompanyBtn:active {
  transform: translateY(0);
}

.searchCompanyBtn.loading {
  background: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

/* 企业搜索下拉列表容器 - 与select下拉框样式一致 */
.company-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #EAEDF0;
  border-radius: 4px;
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 企业列表 */
.company-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.company-list li {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.company-list li:last-child {
  border-bottom: none;
}

.company-list li:hover {
  background-color: #f9fafb;
}

.company-list li:active {
  background-color: #f3f4f6;
}

/* 企业名称 */
.company-list .company-name {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

/* 企业信息（法人 | 状态） */
.company-list .company-info {
  font-size: 12px;
  color: #6b7280;
}

/* 滚动条样式 */
.company-search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.company-search-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.company-search-dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.company-search-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ============================================
   移动端适配
   ============================================ */
@media (max-width: 768px) {
  .searchCompanyBtn {
    width: 70px;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.2rem;
    padding: 0;
    box-sizing: border-box;
  }

  .company-search-wrapper input[name="enterpriseFullName"] {
    width: calc(100% - 78px);
  }

  .company-list li {
    padding: 10px 12px;
  }

  .company-search-dropdown {
    max-height: 12rem;
    font-size: 1.4rem;
  }

  .company-list li {
    padding: 0.8rem 1rem;
  }
}
