.franchise {
  box-sizing: border-box;
  width: 100%;
  background-image: url(../img/franchise/banner.png);
  background-size: cover;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.franchise img {
  width: 100%;
}

.franchise-content {
  width: 1200px;
  margin: auto;
}

.franchise-conten img {
  width: 100%;
}

.franchise-content-contact {
  background-color: #f25152;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 140px;
  height: 70px;
  color: #fff;
  font-size: 15px;
}

.contact-con {
  display: flex;
}

.contact-con img {
  width: 20px;
  height: 20px;
}

.contact-con-text {
  padding-left: 10px;
}
.franchise-apply-title {
  text-align: center;
  margin-top: 70px;
  font-size: 30px;
  color: #333333;
  position: relative;
}
.franchise-apply-title::after {
  content: ' ';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-30px);
  width: 60px;
  height: 2px;
  background: #333333;
}
.franchise-apply-subtitle {
  text-align: center;
  margin-top: 20px;
  font-size: 28px;
  color: #333333;
}
.franchise-apply-form {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
input {
  /* 清除默认内外边距 */
  margin: 0;
  padding: 0;
  /* 清除默认边框和轮廓（focus 时需自定义） */
  border: none;
  outline: none;
  /* 去除 Webkit 内核默认外观（如 iOS 圆角、安卓阴影） */
  -webkit-appearance: none;
  appearance: none;
  /* 重置背景为透明，避免默认背景色 */
  background: transparent;
  /* 字体继承父元素，避免默认字体不一致 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  /* 统一盒模型，避免 padding/border 影响尺寸 */
  box-sizing: border-box;
}

/* 针对特殊 input 类型的补充重置 */
/* 1. 搜索框（search）：去除默认清除按钮和圆角 */
input[type='search'] {
  border-radius: 0; /* 去除默认圆角 */
}
input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none; /* 去除搜索框右侧清除按钮 */
  appearance: none;
}

/* 2. 数字输入框（number）：去除上下箭头 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none; /* 去除数字框上下箭头 */
  appearance: none;
  margin: 0;
}

input::placeholder {
  color: #999;
  opacity: 1;
}

.franchise-apply-item {
  width: 550px;
  height: 70px;
  position: relative;
  margin-top: 60px;
}
.franchise-apply-item:nth-of-type(-n + 2) {
  margin-top: 0;
}
.franchise-apply-item::after {
  content: '*';
  color: #f25152;
  position: absolute;
  top: 24px;
  left: 27px;
  font-size: 22px;
}

.franchise-apply-button {
  width: 1200px;
  height: 72px;
  line-height: 72px;
  background: #f25152;
  border-radius: 4px;
  margin-top: 60px;
  margin-bottom: 100px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.el-cascader {
  width: 550px;
  height: 70px;
  line-height: 70px;
  border-radius: 4px;
}
.el-input {
  line-height: 70px;
  font-size: 22px;
}
.el-input__wrapper {
  box-shadow: 0 0 0 1px #333333 inset;
}
.el-cascader:not(.is-disabled):hover .el-input__wrapper {
  box-shadow: 0 0 0 1px #333333 inset;
  cursor: pointer;
}
.el-cascader .el-input.is-focus .el-input__wrapper {
  box-shadow: 0 0 0 1px #f25152 inset;
}
.el-input__wrapper:hover {
  box-shadow: 0 0 0 1px #333333 inset;
  cursor: pointer;
}
.el-input__wrapper.is-focus {
  box-shadow: 0 0 0 1px #f25152 inset;
}
.el-input__inner {
  height: 70px;
  line-height: 70px;
  padding-left: 40px;
}
.el-input__suffix {
  color: #333333;
}

.el-cascader-node {
  line-height: 40px;
  font-size: 16px;
}
