@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
body{
    /* background: #eee; */
}
.wrapper{
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
}
.container{
    padding: 0 41.5px 48px;
}
.logo{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    padding: 20px 48px;
}
.oyoSlider{
    /* margin-top: 36px; */
    position: relative;
}
.oyoSlider img{
    display: block;
}

.oyoSlider .pagination{
    position: absolute;
    bottom: 20px;
    left: 10px;
}
.oyoSlider .pagination ul{
    display: flex; 
}
.oyoSlider .pagination ul li{
    margin: 0 5px;
    width: 8px;
    height: 8px;   
}
.oyoSlider .pagination ul li a{
    width: 5px;
    height: 5px;
    border: 1px solid #000;
    background: #fff;
    border-radius: 100%;
    cursor: pointer;
    display: block;
}
.oyoSlider .pagination ul li a.selected{
    background: #000;
}   

.arrow_left,
.arrow_right{
    position: absolute;
    top: 48%;
    display: inline-block;
    width: 27px;
    height: 27px;
    left: -35px;
    cursor: pointer;
}
.arrow_right{
    right: -35px;
    left: auto;
}

.oyoTxt{
    margin-top: 10px;
}

p{
    color:#707070;
    font-size: 12px;
    padding: 10px 0;
}
p.result,
p.resultRgt{
    padding: 0;
}
strong{
    font-weight: 700;
}

.shareBtn{
    background: #000000;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    height: 40px;
    line-height: 40px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
}
.shareBtn .shareBox{
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #fff;
    box-shadow: 3px 4px 10px #ccc;
    border-radius: 10px;
    display: none;
}
.shareBtn .shareBox .shareClose{
  width: 25px;
  height: 25px;  
  background: url(../images/close.png) 0 0 no-repeat;
  background-size: 100%;
  top: -10px;
  right: -30px;
  position: absolute;
}

.shareBtn .shareBox ul li{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 20px;
    border-top: 1px solid #ccc;
}
.shareBtn .shareBox ul li:first-child{
    border: none;
}
.oyoList{
    padding: 20px 0;
}
.oyoList h2{
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}
.oyoList ul{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.oyoList ul li{
    margin: 20px 0 0 19px;
    width: 129px;
    height: 153px;
    cursor: pointer;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    position: relative;
}
.oyoList ul li a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.oyoList ul li:nth-child(2n + 1){
    margin: 20px 0 0 0;
}
.oyoList ul li img{
    height: 129px;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.oyoList ul li span{
    color: #000000;
    font-size: 9px;
    display: block;
    padding-left: 5px;
    font-weight: 400;
}
.bnrImg{
    width: 277px;
}
.shareRgtBtn{
    position: fixed;
    top: 10%;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(../images/share.png) 0 0 no-repeat;
    background-size: 100%;
    display: none;
}
