﻿
input.text {
	  outline: none;
	  background: #484443;
	  color: #fff;
	  width: 150px;
	  padding: 10px 10px;
	  border: 1px solid #484443;
	  font-size: 16px;
	  margin: 10px;
  font-family: 'Microsoft YaHei';
}
input.text1 {
	  outline: none;
	  background: #484443;
	  color: #fff;
	  width: 346px;
	  padding: 10px 10px;
	  border: 1px solid #484443;
	  font-size: 16px;
	  margin: 10px;
  font-family: 'Microsoft YaHei';
}
input.text:hover {
  background: #fff;
  color: #3E4E95;
    		transition: .5s all;
		-webkit-transition: .5s all;
		-moz-transition: .5s all;
		-o-transition: .5s all;
}
input.text1:hover {
  background: #fff;
  color: #3E4E95;
    		transition: .5s all;
		-webkit-transition: .5s all;
		-moz-transition: .5s all;
		-o-transition: .5s all;
}
textarea {
outline: none;
  background: #484443;
  color: #fff;
  width: 100px;
  padding: 5px 5px;
  border: 1px solid #484443;
  font-size: 16px;
  resize: none;
  height: 80px;
  font-family: 'Microsoft YaHei';
}
textarea:hover {
	  background: #fff;
	  color: #3E4E95;
  		transition: .5s all;
		-webkit-transition: .5s all;
		-moz-transition: .5s all;
		-o-transition: .5s all;
}
input[type="submit"] {
	  outline: none;
	  background: #ED6E00;
	  border: 0px;
	  color: #FFFFFF;
	  width: 105px;
	  height: 105px;
	  margin: 10px 0 10px 0;
	  padding: 0px;
	  font-size: 16px;
	  font-weight: bold;
	  cursor: pointer;
	  font-family: 'Microsoft YaHei';
	  border-radius: 6px;
}
input[type="submit"]:hover {
		background: #FFFFFF;
		color: #493A29;  		
		transition: .5s all;
		-webkit-transition: .5s all;
		-moz-transition: .5s all;
		-o-transition: .5s all;
}

.piccontainer {
  position: relative;
  width: 200px;
}

.picimage {
  display: block;
  width: 200px;
  height: auto;
  border: 1px solid #999999;
}

.picoverlay {
  position: absolute;
  bottom: 0;
  left: 1px;
  right: 0;
  background-color: #000000;
  overflow: hidden;
  width: 200px;
  height: 0;
  transition: .5s ease;
}

.piccontainer:hover .picoverlay {
  height: 25%;
}

.pictext {
  white-space: nowrap; 
  color: white;
  font-size: 16px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}