.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 768px) {
    .container {
        width: 768px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

body
{
	background-color:#fff;
	/*min-width: 1024px;*/
	min-height: 768px;

}
img{
    border: 0px;
}

hr
{
	margin-top: 10px;
	margin-bottom: 10px;
}

input[type="text"], input[type="password"], input[type="number"], textarea {
	-webkit-font-smoothing: antialiased;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #3a3a3a;
	height: 34px;
	width: 160px;
	vertical-align:middle; 
	line-height: normal;
	margin: 3px 0px;
	padding: 0px 10px;
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}


textarea {
	width: 100%;
	height: 120px;
	resize: none;
	white-space: pre-wrap;
	word-wrap: break-word;
	text-rendering: optimizelegibility;
	padding-bottom: 5px;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 5px;
	line-height: normal;
}


input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus {
	outline: none;
	border-color: #0088ff;
	border: 1px solid #0088ff;
	box-shadow: 0 0 4px 2px #0088ff;
	-webkit-box-shadow: 0 0 4px 1px #0088ff;
	-moz-box-shadow: 0 0 4px 1px #0088ff;
	outline-width: 0px;
	-webkit-appearance: none;
	-webkit-background-clip: border-box;
	-webkit-background-origin: padding-box;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


/*css实现图片div class id等旋转45度角度*/
.img_rotate:hover{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0.5);
    display:block;
}


/*新加响应式样式start*/
.text-xs-left {
    text-align: left !important
}

.text-xs-right {
    text-align: right !important
}

.text-xs-center {
    text-align: center !important
}

@media (min-width: 544px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}
/*新加响应式样式end*/