﻿/* reset */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
}
html {
    height: 100%;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    position: relative;
    word-break: break-all;
}
a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.35);
}
img {
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}
img:not([src*="/"]) {
    display: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th, td, caption {
    vertical-align: middle;
}
textarea {
    resize: none;
}
input, button, select, textarea {
    outline: none;
    border-radius: 0;
    font-family: inherit;
    font-size: inherit;
}
ul,ol,li {
    list-style: none;
}

.arrow_v p, .arrow_l, .arrow_r, .btn_music {
    background-image: url(/wap/akbin/dong/001/s.png);
    background-repeat: no-repeat;
}

.container {
    position: relative;
    width: 640px;
    height: 100%;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
}

.f-hide {
    display: none !important;
}
/*
.loading-img {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 152px;
    height: 188px;
    margin: -94px 0 0 -86px ;
}*/

/* swipe */
.swipe {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swipe li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #fff;
}
.swipe li.cur {
    z-index: 10;
    display: block;
}
.swipe li.action {
    z-index: 11;
    display: block;
}
.animated {
    -webkit-transition: .3s;
}

.swipe li > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: -webkit-box;
    padding: 85px 0;
    -webkit-box-pack: center;
    -webkit-box-align: center;
}

.swipe img {
    max-width: 640px;
}
.swipe .top {
    -webkit-box-align: start;
}
.swipe .middle {
    -webkit-box-align: center;
}
.swipe .bottom {
    -webkit-box-align: end;
}

.arrow_v {
    position: fixed;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    /*background: rgba(160,160,160,0.6); border-radius: 50%;*/
}
.arrow_v p {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -14px 0 0 -25px;
    width: 50px;
    height: 28px;
    background-position: 0 -50px;
}
.arrow_v p.move {
    -webkit-animation: arrowUp 1.5s infinite ease-in-out;
}

.arrow_l, .arrow_r {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 28px;
    height: 50px;
    z-index: 15;
}
.arrow_l {
    left: 18px;
    background-position: -72px 0;
}
.arrow_r {
    right: 18px;
    background-position: -102px 0;
}
.arrow_l.move {
    -webkit-animation: arrowLeft 1.5s infinite;
}
.arrow_r.move {
    -webkit-animation: arrowRight 1.5s infinite;
}

@-webkit-keyframes arrowLeft {
    0% {
        -webkit-transform: translateX(0px);
    }
    20% {
        -webkit-transform: translateX(0px);
    }
    35% {
        -webkit-transform: translateX(12px);
    }
    50% {
        -webkit-transform: translateX(-18px);
    }
    65% {
        -webkit-transform: translateX(0px);
    }
    80% {
        -webkit-transform: translateX(-12px);
    }
    100% {
        -webkit-transform: translateX(0px);
    }
}

@-webkit-keyframes arrowRight {
    0% {
        -webkit-transform: translateX(0px);
    }
    20% {
        -webkit-transform: translateX(0px);
    }
    35% {
        -webkit-transform: translateX(-12px);
    }
    50% {
        -webkit-transform: translateX(18px);
    }
    65% {
        -webkit-transform: translateX(0px);
    }
    80% {
        -webkit-transform: translateX(12px);
    }
    100% {
        -webkit-transform: translateX(0px);
    }
}


@-webkit-keyframes arrowUp {
    0%,30% {
        opacity: 0;
        -webkit-transform: translate(0,10px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate(0,0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(0,-8px);
    }
}