2014-07-11 18:34:59 +08:00
|
|
|
|
#auto_refresh {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
2014-08-30 01:32:27 +08:00
|
|
|
|
height: 135px;
|
|
|
|
|
background: rgba(0, 0, 0, 0.75);
|
2014-07-11 18:34:59 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
display: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: all linear 0.1s;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 01:32:27 +08:00
|
|
|
|
#auto_refresh.final {
|
|
|
|
|
display: block;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: all linear 0.1s;
|
|
|
|
|
}
|
2014-07-11 18:34:59 +08:00
|
|
|
|
|
|
|
|
|
#auto_refresh .container-wrap {
|
2014-08-30 01:32:27 +08:00
|
|
|
|
width: 700px;
|
2014-07-11 18:34:59 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0 auto;
|
2014-08-30 01:32:27 +08:00
|
|
|
|
height: 190px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
background: linear-gradient(to right, #ffa600, #ee3e02);
|
|
|
|
|
border-radius: 5px;
|
2014-07-11 18:34:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 01:32:27 +08:00
|
|
|
|
#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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-11 18:34:59 +08:00
|
|
|
|
#auto_refresh section.auto-refresh-info {
|
|
|
|
|
position: absolute;
|
2014-08-30 01:32:27 +08:00
|
|
|
|
left: 325px;
|
2014-07-11 18:34:59 +08:00
|
|
|
|
width: 250px;
|
2014-12-12 23:28:35 +08:00
|
|
|
|
top: 22px;
|
2014-07-11 18:34:59 +08:00
|
|
|
|
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;
|
2014-12-12 23:28:35 +08:00
|
|
|
|
display: block;
|
2014-07-11 18:34:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#auto_refresh .auto-refresh-info input {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#auto_refresh .auto-refresh-info button.button {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2014-08-30 01:32:27 +08:00
|
|
|
|
|
|
|
|
|
#btn_stop_refresh {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 60px;
|
|
|
|
|
top: 45px;
|
|
|
|
|
}
|