| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- html {
- margin: 0 auto;
- padding: 0;
- height: 100%;
- }
- body {
- height: 100%;
- background: #fff;
- }
- .wrap {
- width: 100%;
- height: 100%;
- }
- .wrap_bj {
- width: 100%;
- height: 100%;
- background: url(../img/loginBJ.jpg) no-repeat;
- background-size: 100% 100%;
- }
- .login_title {
- position: absolute;
- left: 10%;
- top: 10%;
- color: #FFFFFF;
- font-size: 48px;
- font-weight: bold;
- letter-spacing: 3px;
- }
- .login_title .titleDecoration{
- height: 1px;
- background: #AAAAAA;
- margin-top: 1px;
- width: 100%;
- }
- .login_content{
- position: absolute;
- top: 32%;
- left: 16%;
- }
- .login_content p{
- color: #FFFFFF;
- font-size: 36px;
- text-shadow:0px 0px 10px #FFFFFF;
- letter-spacing: 8px;
-
- }
- .login_bottom{
- position: absolute;
- bottom: 7%;
- width: 100%;
- text-align: center;
- color: #FFFFFF;
- font-size: 32px;
- text-shadow:0px 0px 10px #FFFFFF;
- letter-spacing: 3px;
- }
- .login_right {
- position: absolute;
- top: 50%;
- right: 15%;
- margin-top: -290px;
- height: 580px;
- z-index: 1;
- }
- .login_right .tab_box {
- border: 1px solid #41caf2;
- border-top-right-radius: 15px;
- border-bottom-left-radius: 15px;
- margin: 50px auto 65px;
- padding: 0;
- overflow: hidden;
- width: 410px;
- /*background: #ffffff;*/
- background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0.5));
- }
- .login_right .tab_box .tab_ul{
- list-style: none;
- line-height: 50px;
- padding-top: 15px;
- margin-left: 10%;
- font-size: 18px;
- color: #000000;
- }
- .login_right .tab_box .tab_content {
- margin: 50px 0 60px 0;
- }
- .login_right .tab_box .tab_content div p {
- width: 80%;
- margin: 0 auto;
- height: 35px;
- border-radius: 3px;
- margin-bottom: 25px;
- line-height: 30px;
- padding-left: 20px;
- }
- .login_right .tab_box .tab_content div p input {
- width: 75%;
- border: 0;
- font-size: 16px;
- outline: none;
- font-family: "仿宋", "宋体";
- }
- .login_icon {
- display: inline-block;
- width: 17px;
- height: 19px;
- vertical-align: middle;
- margin-right: 15px;
- }
- .login_icon_user {
- background: url(../img/login_user.png) no-repeat;
- }
- .login_icon_lock {
- background: url(../img/login_lock.png) no-repeat;
- }
- .login_icon_code {
- background: url(../img/login_code.png) no-repeat;
- }
- .login_go {
- text-align: center;
- padding: 0!important;
- font-size: 16px;
- letter-spacing: 16px;
- font-family: "仿宋", "宋体";
- color: #fff;
- background: #28609F;
- filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#1f90ec, endcolorstr=#1cb5ef, gradientType=1);
- /*background: -webkit-gradient(li near, 0 0, 100% 0, from(#28609F), to(#1cb5ef));
- background: -webkit-linear-gradient(left, #28609F, #1cb5ef);
- background: -moz-linear-gradient(left, #28609F, #1cb5ef);
- background: -o-linear-gradient(left, #28609F, #1cb5ef);
- background: linear-gradient(left, #28609F, ##28609F);*/
- cursor: pointer;
- }
- .error {
- height: 13px;
- background: url(../img/yz.png) no-repeat 0 -8px;
- display: none;
- }
- .errorShow {
- display: inline-block;
- }
|