.message {
  padding-top: 1.75rem;
  padding-bottom: 1.87rem;
}

.message .main {
  width: 100%;
}


.message .main form {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .3rem;
  margin: .8rem auto 0;
}

.message .item {
  width: 7.05rem;
}

.message .item.select {
  position: relative;
}

.select::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: .29rem;
  width: 0;
  height: .07rem;
  border: .16rem solid transparent;
  border-top-color: #000;
}

.selectList{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  background: #FBFBFB;
  border-radius: 0.08rem;
  overflow: hidden;
  display: none;
}

.selectItem{
  padding: .2rem .28rem;
  cursor: pointer;
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000;
}

.selectItem:hover{
  background: #E5E5E5;
}

.message .item.w100 {
  width: 100%;
}

.message .item p {
  font-family: MiSans;
  font-weight: 600;
  font-size: 0.22rem;
  color: #FFFFFF;
  margin-bottom: .24rem;
}

input[type='text'] {
  width: 100%;
  height: 0.7rem;
  background: #FBFBFB;
  border-radius: 0.08rem;
  border: 0px solid #D6D6D6;
  padding: 0 .27rem;
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000;
}

input[readonly] {
  cursor: pointer;
}

input[type='text']::-webkit-input-placeholder {
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #8C8C8C;
}

textarea[name='content'] {
  width: 100%;
  height: 2.98rem;
  background: #FBFBFB;
  border-radius: 0.08rem;
  color: #000;
  padding: .23rem .28rem;
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000;
}

textarea::-webkit-input-placeholder {
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #8C8C8C;
}

input[type='file'] {
  display: none;
}

label[for='file'] {
  width: 100%;
  height: 0.69rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .16rem;
  border-radius: 0.08rem;
  border: 1px dashed #BBBABA;
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #B9B9B9;
  cursor: pointer;
}

label[for='file'] img {
  width: .39rem;
  height: .39rem;
}

label[for="agree"] {
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.14rem;
  color: #B9B9B9;
}

button[type='text'] {
  width: 2.04rem;
  height: 0.61rem;
  background: #5C5C5C;
  border-radius: 0.12rem;
  display: block;
  margin: .62rem auto 0;
}

.file-list {
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 8px;
  background-color: #f5f7fa;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
}

.file-name {
  flex: 1;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000;
}

.file-size {
  color: #909399;
  margin-right: 15px;
}

.delete-btn {
  background-color: #fff;
  border: 1px solid #dcdfe6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #909399;
  transition: all 0.3s;
}

.delete-btn:hover {
  background-color: #f56c6c;
  color: #fff;
  border-color: #f56c6c;
}