/*登录的样式*/
html {
height: 100%;
}
.signin {
width: 100%;
position: relative;
height: 100%;
background-size: 100% 100%;
overflow: hidden;
background: -webkit-linear-gradient(45deg, #184dc5, #25a1eb);
/* Safari 5.1 - 6.0 */
background: -o-linear-gradient(45deg, #184dc5, #25a1eb);
/* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(45deg, #184dc5, #25a1eb);
/* Firefox 3.6 - 15 */
background: linear-gradient(45deg, #184dc5, #25a1eb);
/* 标准的语法 */
}
.signin .signin_left,
.signin .signin_right {
width: 50%;
float: left;
}
.signin .sign_bottom {
position: absolute;
bottom: 0;
background: url(../img/bottom_bg.png) left top repeat-x;
width: 100%;
height: 258px;
/*-webkit-animation-name: shake;
-webkit-animation-duration: 40s;
-webkit-animation-direction: alternate;
-webkit-anination-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: shake;
-moz-animation-duration: 40s;
-moz-animation-direction: alternate;
-moz-anination-timing-function: linear;
-moz-animation-iteration-count: infinite;*/
}
@-webkit-keyframes shake {
0%,
100% {
-webkit-transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-30px, 0px, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(30px, 0px, 0);
}
}
@-moz-keyframes shake {
0%,
100% {
-moz-transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-moz-transform: translate3d(-30px, 0px, 0);
}
20%,
40%,
60%,
80% {
-moz-transform: translate3d(30px, 0px, 0);
}
}
.signin_left .left_logo {
position: absolute;
width: 641px;
height: 651px;
left: 13.1%;
top: 18.3%;
}
.left_logo_png {
width: 100%;
height: 100%;
font-size: 0;
}
.signin_right {}
.signin_right .signin_panel {
position: absolute;
left: 52.7%;
top: 22.1%;
width: 502px;
height: 573px;
text-align: center;
background: url(../img/signin_panel_bgs.png) left top no-repeat;
}
.signin_title {
width: 353px;
height: 32px;
margin-top: 74px;
margin-bottom: 66px;
font-size: 0;
}
.signin_panel .signin_user,
.signin_panel .signin_extension,
.signin_panel .signin_password {
position: relative;
width: 360px;
margin: 0 auto 30px auto;
}
.signin_icons {
position: absolute;
left: 13.5px;
bottom: 12px;
width: 33px;
display: inline-block;
}
.signin_user .signin_icons {
height: 33px;
background: url(../img/user_icons.png) center top no-repeat;
}
.signin_extension .signin_icons {
height: 33px;
background: url(../img/extensionnumber_icons.png) center top no-repeat;
}
.signin_password .signin_icons {
height: 36px;
background: url(../img/password_icons.png) center top no-repeat;
}
.signin_panel .form-control {
padding-left: 64px;
height: 60px;
line-height: 60px;
font-size: 18px;
color: #000;
border: none;
border-bottom: 2px solid #e6e6e6;
font-family: "微软雅黑";
}
.signin_panel .form-control {
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.has-error .form-control:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.has-success .form-control:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btns {
position: absolute;
left: 50%;
margin-left: -180px;
bottom: 124px;
width: 360px;
height: 50px;
line-height: 50px;
background: url("../img/submit_btn_bgs.png") left top no-repeat;
color: #fefefe;
font-size: 24px;
font-family: "微软雅黑";
text-align: center;
border: 0;
outline: none;
cursor: pointer;
}
.btns[disabled] {
cursor: no-drop;
}
.alert {
width: 360px;
text-align: left;
margin: -29px auto 0 auto;
display: none;
padding-top: 5px;
padding-bottom: 5px;
background-color: transparent;
border-color: transparent;
}
#login_msg {
font-size: 12px;
}
.signin_panel .form-control-feedback {
top: 12px;
right: 12px;
font-size: 18px;
}
/*.pinion_rotate {
margin-left: 25px;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 2s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 2s;
-webkit-animation: rotate 4s linear infinite;
-moz-animation: rotate 4s linear infinite;
-o-animation: rotate 4s linear infinite;
animation: rotate 4s linear infinite;
}*/
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg)
}
}
@-moz-keyframes rotate {
from {
-moz-transform: rotate(0deg)
}
to {
-moz-transform: rotate(359deg)
}
}
@-o-keyframes rotate {
from {
-o-transform: rotate(0deg)
}
to {
-o-transform: rotate(359deg)
}
}
@keyframes rotate {
from {
transform: rotate(0deg)
}
to {
transform: rotate(359deg)
}
}
::-webkit-input-placeholder {
/* WebKit browsers */
font-family: '微软雅黑';
color: #aba9a9;
font-size: 18px;
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
font-family: '微软雅黑';
color: #aba9a9;
font-size: 18px;
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */
font-family: '微软雅黑';
color: #aba9a9;
font-size: 18px;
}
:-ms-input-placeholder {
/* Internet Explorer 10+ */
font-family: '微软雅黑'!important;
color: #aba9a9!important;
font-size: 18px!important;
}
@media only screen and (max-width: 1680px) {
.signin_left .left_logo {
left: 7.5%;
top: 50%;
margin-top: -325px;
}
.signin_right .signin_panel {
top: 50%;
margin-top: -286px;
}
}
@media only screen and (max-width: 1566px) {
.signin_left .left_logo {
left: 5%;
}
}
@media only screen and (max-width: 1366px) {
.signin_left .left_logo {
left: 4%;
}
.signin_left .left_logo,
.signin_right .signin_panel {
-webkit-transform: scale(.8);
transform: scale(.8);
}
}
@media only screen and (max-width: 1280px) {
.signin_left .left_logo {
left: 3%;
}
.signin_left .left_logo,
.signin_right .signin_panel {
-webkit-transform: scale(.6);
transform: scale(.6);
}
}
@media only screen and (max-width: 1240px) {
.signin_left .left_logo {
left: 2%;
}
}
@media only screen and (max-width: 1170px) {
.signin_left .left_logo {
left: -5%;
}
}
@media only screen and (max-width: 1024px) {
.signin_left .left_logo {
display: none;
}
.signin .signin_right {
width: 100%;
float: none;
}
.signin_right .signin_panel {
top: 50%;
margin-top: -285px;
left: 50%;
margin-left: -247px;
}
}
.signin_panel .signin_user,
.signin_panel .signin_extension,
.signin_panel .signin_password {
margin: 0px auto;
}
.alert {
margin: 0px auto;
}
.loginTypes {
position: absolute;
bottom: 80px;
right: 86px;
color: #249fea;
}
.loginTypes p {
cursor: pointer;
}
.signin_extension,
.admin_login {
display: none;
}
input::-ms-clear{
display: none!important;
}
input::-ms-reveal {
display: none!important;
}