/* -------------------------------- 

Form

-------------------------------- */
.yunzafei {width: 100%;display:inline-block;font-size: 14px;}
.yunzafei p{display:inline-block;font-size: 14px;}
.cd-form {
  width: 100%;
  max-width:160px;
  display:inline-block;
  line-height:36px;
  
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 1px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}


.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 5px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  /*border-radius: 4px;*/
  padding-right:26px;
 /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);*/
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #ddd;
  /*box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);*/
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index:0;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("/static/new6.0/product/images/cd-icon-arrow.png") no-repeat center right;
  pointer-events: none;
}
.cd-form select {
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);*/
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 20px 16px 0;
}

