| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- #top_part{
- width:100%;
- height:65%;
- position:relative;
- }
- #bottom_part{
- width:100%;
- height:35%;
- padding:2% 3%;
- }
- .box_border{
- box-shadow: 3px 3px 4px rgba(0,0,0,.4);
- border-radius:10px;
- background:#fff;
- }
- #image_wraper{
- position:relative;
- z-index:2;
- height:97%;
- width:96%;
- margin-top:0.5rem;
- margin-left:2%;
- overflow:hidden;
- border:1px solid #acacac;
- }
- #background_1{
- position:absolute;
- z-index:1;
- height:98%;
- width:94%;
- top:0;
- margin-left:3%;
- }
- #background_2{
- position:absolute;
- z-index:0;
- height:99%;
- width:92%;
- top:0;
- margin-left:4%;
- }
- .image_main{
- width:100%;
- height:100%;
- position:absolute;
- background:#fff;
- }
- .image{width:100%;height:85%;}
- .image button{width:100%;height:100%;}
- .user_info{
- width:100%;
- height:15%;
- position:relative;
- padding:0 1rem;
- }
- .buttons{
- position:absolute;
- height:100%;
- right:0;
- text-align:right;
- }
- .buttons button{
- position:absolute;
- width:30px;
- height:40px;
- top:50%;
- margin-top:-20px;
- }
- .add_friend{
- background:url(../images/guess_add.png) no-repeat;
- background-size:cover;
- right:50px;
- }
- .help{
- background:url(../images/guess_help.png) no-repeat;
- background-size:cover;
- right:5px;
- }
- /*#guess_next{
- width:80px;
- height:30px;
- position:fixed;
- right:20px;
- margin-top:-2px;
- background:url(../images/choice-next.png) no-repeat;
- background-size:contain;
- boeder-radius:5px;
- }*/
- .choice{
- position:relative;
- height:40px;
- line-height:40px;
- width:42%;
- display:inline-block;
- border-radius:20px;
- margin-left:5%;
- background:#fff;
- box-shadow:2px 2px 2px rgba(0,0,0,0.2);
- color:#343434;
- }
- .current{
- color:#fff;
- background:#05c0ab;
- }
- .choice img{
- height:30px;
- width:30px;
- margin:5px 5px 0;
- }
- .choice span{
- position:absolute;
- width:63%;
- left:30%;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- }
- @media screen and (min-width:350px){
- #top_part{
- height:70%;
- }
- #bottom_part{
- height:30%;
- }
- .buttons button{
- width:40px;
- height:55px;
- margin-top:-28px;
- }
- .add_friend{
- right:60px;
- }
- .help{
- right:10px;
- }
- }
- /*·ÖÏí*/
- #gotoshare{
- position: fixed;
- z-index: 10;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- background: #000;
- opacity: 0.8;
- font-size: 1.5rem;
- color: #fff;
- display: none;
- }
- #gotoshare img{
- height: 8rem;
- position: absolute;
- right: 1rem;
- top: 1rem;
- }
|