Light12306/Web12306/css/ui/ui-autorefresh.css
2014-12-12 23:28:35 +08:00

66 lines
1.2 KiB
CSS

#auto_refresh {
position: fixed;
left: 0;
bottom: 0;
height: 135px;
background: rgba(0, 0, 0, 0.75);
width: 100%;
display: none;
opacity: 0;
transition: all linear 0.1s;
}
#auto_refresh.final {
display: block;
opacity: 1;
transition: all linear 0.1s;
}
#auto_refresh .container-wrap {
width: 700px;
position: relative;
margin: 0 auto;
height: 190px;
margin-top: 5px;
background: linear-gradient(to right, #ffa600, #ee3e02);
border-radius: 5px;
}
#auto_refresh .container-wrap i.ticket-logo {
position: absolute;
background: url(/images/ticket.png) left top no-repeat;
height: 150px;
width: 238px;
left: 65px;
top: 20px;
}
#auto_refresh section.auto-refresh-info {
position: absolute;
left: 325px;
width: 250px;
top: 22px;
color: #fff;
text-shadow: 0 0 7px rgba(173, 173, 173, 0.7);
font-size: 16px;
line-height: 26px;
}
#auto_refresh .auto-refresh-info label {
margin-right: 15px;
display: block;
}
#auto_refresh .auto-refresh-info input {
margin-left: 0;
}
#auto_refresh .auto-refresh-info button.button {
box-shadow: none;
}
#btn_stop_refresh {
position: absolute;
right: 60px;
top: 45px;
}