@charset "UTF-8";
/**
 * 20240320温州市阳光采购服务平台
 * date: 2024-12-20
 * author: xhz;
 */
.content {
  background: #fff;
  margin: 25px auto;
  padding: 32px 130px;
}
.content * {
  box-sizing: border-box;
}

.firm {
  margin-top: 25px;
  padding: 14px 20px 0;
  height: 365px;
  background: #fff;
  box-sizing: border-box;
}
.firm-title {
  height: 36px;
  line-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ae946d;
  font-size: 24px;
  font-weight: bold;
}
.firm-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background: url("../images/title_ico.png") center no-repeat;
}
.firm-title::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  transform: rotateY(180deg);
  background: url("../images/title_ico.png") center no-repeat;
}

.form {
  margin-top: 40px;
}
.form .row {
  display: flex;
  justify-content: space-between;
}
.form .row .form-item {
  width: 100%;
}
.form .row + .row {
  margin-top: 25px;
}
.form .row.half .form-item {
  width: calc(50% - 15px);
}
.form .row .form-item.required .form-label:after {
  content: "*";
  color: red;
  font-size: 16px;
  display: inline-block;
  margin-left: 10px;
}
.form .row .form-label {
  font-size: 16px;
  position: relative;
  line-height: 22px;
}
.form .row .form-value {
  margin-top: 10px;
}
.form .row .form-value > * {
  width: 100%;
  display: block;
}

input[type=text],
textarea {
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 16px;
}

textarea {
  resize: none;
  height: 140px;
  line-height: 25px;
  padding-top: 5px;
}

input[type=text] {
  height: 46px;
}
input[type=text].date {
  width: 150px;
  background: url(../images/date.png) no-repeat right 12px center;
}

.chosen-container-active.chosen-with-drop .chosen-single,
.chosen-container-single .chosen-single {
  height: 46px;
  line-height: 46px;
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 16px;
}

.chosen-container-single .chosen-default {
  color: #b6b6b6;
}

.chosen-container .chosen-drop {
  padding-top: 4px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

.chosen-container .chosen-results {
  padding: 2px 2px 6px;
  margin: 0;
}

.chosen-container .chosen-results li {
  padding: 0 8px;
  height: 26px;
  line-height: 26px;
  margin-top: 4px;
}

.chosen-container .chosen-results li.highlighted {
  background: #f8f8f8 !important;
  color: #333 !important;
}

.chosen-container .chosen-results li.result-selected {
  color: #298b6a !important;
  background: #f8f8f8 !important;
}

.chosen-container-single .chosen-single div {
  right: 10px;
}

.chosen-container-single .chosen-single div b {
  background: url("../images/chosen_arrow.png") no-repeat center;
  background-size: 8px 4px;
  background-position: center center !important;
}

.submit-btn {
  width: 160px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  background: #e0c193;
  margin: 40px auto 0;
  font-size: 16px;
  color: #fff;
cursor: pointer;}

.upload .upload-btn {
  position: relative;
  float: none;
  cursor: pointer;
}
.upload .upload-btn > div {
  width: 100% !important;
  color: #fff;
}
.upload .upload-btn > div + div {
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}
.upload .upload-btn input {
  width: 100%;
}
.upload .remind {
  color: #999999;
  font-size: 16px;
  margin: 10px 0;
  line-height: 22px;
}
.upload .file-title {
  line-height: 22px;
  font-size: 14px;
}
.upload .upload-btn {
  width: 96px;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  background: #00377d;
  color: #fff;
  font-size: 16px;
  width: 96px !important;
  border-radius: 4px;
  cursor: pointer;
}
.upload .file-list {
  display: flex !important;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: space-between;
}
.upload .file-list li {
  position: relative;
  width: calc(50% - 4px);
  margin-top: 10px;
  height: 59px;
  border-radius: 4px;
  background: #f7f7f7;
  padding: 0 10px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.upload .file-list .file-img {
  width: 37px;
  height: 37px;
  position: absolute;
  left: 8px;
  top: 11px;
}
.upload .file-list .file-name {
  line-height: 21px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload .file-list .file-name.upload-error {
  color: red;
}
.upload .file-list .file-size {
  margin-top: 3px;
  color: #b1b6cc;
  font-size: 12px;
  line-height: 18px;
}
.upload .icon-close {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url("../images/cancel.png") no-repeat center;
}