*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* -------------------------------- 

Form

-------------------------------- */
fieldset{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	padding-top:25px;
}
.shou-form {
  width: 90%;
  margin: 0 auto;
}
.shou-form::after {
  clear: both;
  content: "";
  display: table;
}
.shou-form fieldset {
  margin: 4px 0;
}
.shou-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.shou-form div {
  /* form element wrapper */
  position: relative;
  margin: 12px 0;
}
.shou-form h4 {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 12px;
}
.shou-form .cd-label {
	font-size: 1.4rem;
	color: #666;
	margin-bottom: 10px;
	position:relative;
	float:left;
	padding:9px 15px;
	width:25%;
	text-align: justify;
	white-space: pre-wrap;
	text-align-last: justify;
}
.shou-form input, .shou-form textarea, .shou-form select, .shou-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #2b3e51;
}
.shou-form input[type="text"],
.shou-form input[type="email"],
.shou-form input[type="password"],
.shou-form textarea,
.shou-form select,
.shou-form legend {
  width: 75%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.shou-form input[type="text"],
.shou-form input[type="email"],
.shou-form input[type="password"],
.shou-form textarea,
.shou-form select {
  /* general style for input elements */
  padding: 10px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.shou-form input[type="text"]:focus,
.shou-form input[type="email"]:focus,
.shou-form input[type="password"]:focus,
.shou-form textarea:focus,
.shou-form select:focus {
  outline: none;
  border-color: #0073cc;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.shou-form .shou-select {
  /* select element wapper */
  position: relative;
}
.shou-form .shou-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("/stylebm/form/img/cd-icon-arrow.png") no-repeat center center;
  pointer-events: none;
}
.shou-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.shou-form select::-ms-expand {
  display: none;
}
.shou-form .shou-form-list {
  margin-top: 16px;
}
.shou-form .shou-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;
}
.shou-form input[type=radio],
.shou-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.shou-form input[type="radio"] + label,
.shou-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.shou-form input[type="radio"] + label::before,
.shou-form input[type="radio"] + label::after,
.shou-form input[type="checkbox"] + label::before,
.shou-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.shou-form input[type="radio"] + label::before,
.shou-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.shou-form input[type="radio"] + label::before,
.shou-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.shou-form input[type="checkbox"] + label::before,
.shou-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.shou-form input[type="radio"] + label::after,
.shou-form input[type="checkbox"] + label::after {
  background-color: #0073cc;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
}
.shou-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("/stylebm/form/img/cd-icon-radio.svg");
}
.shou-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("/stylebm/form/img/cd-icon-check.svg");
}
.shou-form input[type="radio"]:checked + label::after,
.shou-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.shou-form input[type="radio"]:checked + label::before,
.shou-form input[type="radio"]:checked + label::after,
.shou-form input[type="checkbox"]:checked + label::before,
.shou-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.shou-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.shou-form input[type="submit"] {
  /* button style */
  border: none;
  background: #0073cc;
  border-radius: .25em;
  padding: 16px 0px;
  width:50%;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .shou-form input[type="submit"]:hover {
  background: #42a2e1;
}
.shou-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.shou-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.shou-form input[type="reset"] {
  /* button style */
  border: none;
  background: #0073cc;
  border-radius: .25em;
  padding: 16px 30px;
  margin-left:30px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .shou-form input[type="reset"]:hover {
  background: #42a2e1;
}
.shou-form input[type="reset"]:focus {
  outline: none;
  background: #2b3e51;
}
.shou-form input[type="reset"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}


.shou-form input[type="button"] {
  /* button style */
  border: none;
  background: #0073cc;
  border-radius: .25em;
  padding: 16px 30px;
  margin-left:30px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .shou-form input[type="button"]:hover {
  background: #42a2e1;
}
.shou-form input[type="button"]:focus {
  outline: none;
  background: #2b3e51;
}
.shou-form input[type="button"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.shou-form [required] {
  background: url("/stylebm/form/img/cd-required.svg") no-repeat top right;
}
.shou-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.shou-form .error {
  border-color: #e94b35 !important;
}
.shou-title{font-weight:bold;color:#0073cc;text-align:center; margin-top:15px;}
.shou-zi{font-size: 1.3rem;text-align:center;}
.shou-flow{
	margin-bottom: 15px;
}
.shou-flow>i{
	width: 100%;
	height: 2px;
	background: #0073cc;
	display: inline-block;
}
.shou-form-flow{
	margin: 10px 0px;
}
.shou-form-flow>i{
	width: 100%;
	height: 2px;
	background: #0073cc;
	display: inline-block;
}
}


.liandongselect {
  /* select element wapper */
  text-align: center;
  text-align-last: center;
  display: inline;
  background: url("/stylebm/form/img/cd-icon-arrow.png") no-repeat scroll right 10% top 50% transparent;
  background-size: 16px 16px;
  padding-right: 32px;
  }
.liandongselect select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  float:left;
}
.liandongselect select::-ms-expand {
  display: none;
}
.up_add {
  width: 90px;
  height: 110px;
  opacity: 0;
}
.up_add_bg {
  width: 90px;
  height: 110px;
  background-image: url(/form/img/ShowPhoto.gif);
}
#pos_h_cread{
    position: absolute;
    z-index: 9999999;
    border-radius: 5px;
    width: 500px;
    padding:10px;
    background:rgba(0, 0, 0, 0.7);
    background:#000\9;
    filter:alpha(opacity=70);
}
#pos_h_cread span{
        filter:alpha(opacity=70);
        opacity:.7;
        border-color: transparent transparent #000 transparent; 
        border-style: solid; 
        border-width: 0px 15px 10px 15px; 
        height: 0px; 
        width: 0px; 
        position:absolute;
        top:-10px;
        left:50px;
        
}
#pos_h_cread p{
    color:#fff;font-size:12px;line-height:18px;
}
.icon1{
	background:url("/stylebm/form/img/bgicon1.png") left no-repeat;
}
.icon2{
	background:url("/stylebm/form/img/bgicon2.png") left no-repeat;
}
.icon3{
	background:url("/stylebm/form/img/bgicon3.png") left no-repeat;
}
.icon4{
	background:url("/stylebm/form/img/bgicon4.png") left no-repeat;
}
.icon5{
	background:url("/stylebm/form/img/bgicon5.png") left no-repeat;
}
.icon6{
	background:url("/stylebm/form/img/bgicon7.png") left no-repeat;
}
.icon7{
	background:url("/stylebm/form/img/bgicon6.png") left no-repeat;
}
.icon8{
	background:url("/stylebm/form/img/bgicon8.png") left no-repeat;
}
.icon9{
	background:url("/stylebm/form/img/bgicon9.png") left no-repeat;
}
.icon10{
	background:url("/stylebm/form/img/bgicon10.png") left no-repeat;
}
.icon11{
	background:url("/stylebm/form/img/bgicon11.png") left no-repeat;
}
.icon12{
	background:url("/stylebm/form/img/bgicon12.png") left no-repeat;
}
.icon13{
	background:url("/stylebm/form/img/bgicon13.png") left no-repeat;
}
.icon14{
	background:url("/stylebm/form/img/bgicon14.png") left no-repeat;
}
.icon15{
	background:url("/stylebm/form/img/bgicon15.png") left no-repeat;
}
.icon16{
	background:url("/stylebm/form/img/bgicon16.png") left no-repeat;
}
.icon17{
	background:url("/stylebm/form/img/bgicon17.png") left no-repeat;
}
 .icon18{
	background:url("/stylebm/form/img/bgicon18.png") left no-repeat;
}
.icon19{
	background:url("/stylebm/form/img/bgicon19.png") left no-repeat;
}
.icon20{
	background:url("/stylebm/form/img/bgicon20.png") left no-repeat;
}
@media screen and (max-width:1100px){
.shou-form .cd-label {
	width: 100%;
	text-align: left;
	white-space: pre-wrap;
	text-align-last: left;
	padding:0px;
}
.shou-form .shou-select {
  clear:both;
}

.shou-form input[type="text"], .shou-form input[type="email"], .shou-form input[type="password"], .shou-form textarea, .shou-form select, .shou-form legend {
    width: 100%;
}
}