/* shoplist */
.r_shoplist{
  padding-bottom: 40px;
}
.r_shoplist .r_addshop{
  margin-bottom: 10px;
  color: #d42333;
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  flex: none;
  width: 100%;
}
.r_shoplist .r_shopitem_add{
}
.r_shoplist .r_shopitem_add .r_shoplist_addBox{
  padding: 10px;
}
.r_shoplist .r_shopitem_add .add_item{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box; 
  width: 50%;
  font-size: 14px;
  color: #666;
}
.r_shoplist .r_shopitem_add #shopImg{
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
}
.r_shoplist .r_shopitem_add .add_item #upload{
  padding: 0;
  border: none;
}
.r_shoplist .r_shopitem_add .add_item span{
  padding-right: 10px;
  flex: 0 0 80px;
  width: 80px;
}
.r_shoplist .r_shopitem_add .add_item input,
.r_shoplist .r_shopitem_add .add_item textarea{
  padding: 5px;
  flex: 1;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  resize: none;
}
.r_shoplist .r_shopitem_add .add_item textarea{
  height: 60px;
}
.r_shoplist .r_shopitem_add #add_button{
  width: 50px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: #d42333;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 5px;
}
.r_shoplist .r_shoplist_accept{
  flex: 0 0 100%;
  margin-bottom: 20px;
  background: #fff;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.r_shoplist .r_shoplist_accept .r_shoplist_title{
  padding: 5px;
  width: 100%;  
  background-color: rgb(190, 164, 116);
  background-image: linear-gradient(to right, rgb(194, 176, 142) 3%, rgb(190, 164, 116) 100%);
  color: #fff;
  box-sizing: border-box;
  font-size: 18px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;

}
.r_shoplist .r_shoplist_accept .r_shoplist_list{
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem{
  margin-bottom: 1.33%;
  margin-right: 1.33%;
  display: flex;
  flex-direction: column;
  flex: 0 0 24%;
  width: 24%;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem:nth-child(4n){
  margin-right: 0;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_img{
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  height: 0;
  overflow: hidden;
  margin: 0;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_img img{
  position: absolute;
  width: 100%;
  height: 100%;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_title{
  margin-top: 5px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_scores{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  color: #d42333;
  font-size: 14px;
  font-weight: bold;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_scores .scores{
  display: flex;
  align-items: center;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_scores .scores .stars{
  margin-right: 5px;
  width: auto !important;
  line-height: 10px;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_address{
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}
.r_shoplist .r_shoplist_accept .r_shoplist_list .r_shopitem .r_shopitem_update{
  display: inline-block;
  padding: 3px 5px;
  margin-top: 5px;
  width: 40px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background: rgb(0,124,200);
  box-sizing: border-box;
  border-radius: 5px;
}

/* shopDetail */
.r_detail_wrapper .r_shopdetail{
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 5px 14px 0 rgba(0,0,0,.1)
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info{
  flex: 1;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_title{
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info p{
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_scores{
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_scores .scores{
  display: flex;
  align-items: center;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_scores .scores .stars{
  margin-right: 5px;
  width: auto !important;
  line-height: 10px; 
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_scores p{
  margin-right: 15px;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_scores .other_scores span,
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_time span{
  margin-right: 5px;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_info .info_time{
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_img{
  margin-left: 20px;
  flex: 0 0 30%;
  width: 30%;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_img a{
  display: block;
  position: relative;
  padding-bottom: 65%;
  width: 100%;
  height: 0;
  overflow: hidden;
  margin: 0;
}
.r_detail_wrapper .r_shopdetail .r_shopdetail_img a img{
  position: absolute;
  width: 100%;
  height: 100%;
}
.r_detail_wrapper .r_shop_commonTitle{
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.r_detail_wrapper .r_shop_commonTitle a{
  float: right;
  font-size: 14px;
  line-height: 25px;
  color: #999;
}
.r_detail_wrapper .r_shop_sendComment,.r_detail_wrapper .r_shop_commentList{
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_scores{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_scores p{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 10px;
  flex: 0 0 40%;
  width: 40%;
  font-size: 14px;
  color: #666;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_scores p span{
  line-height: 10px;
  margin-left: 5px;
  width: auto !important;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_text{
  margin-top: 10px;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_text textarea{
  padding: 20px;
  width: 100%;
  height: 120px;
  resize: none;
  box-sizing: border-box;
  font-size: 14px;
  color: #666;
  border:1px solid #ddd;
  border-radius: 4px;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_uploadImg{
  margin-top: 10px;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_uploadImg p{
  display: inline-block;
}
.r_detail_wrapper .r_shop_sendComment .r_shop_uploadImg input{
  margin-left: 10px;
  display: inline-block;
}
#js-pre{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
#js-pre .img-box{
  margin: 0 1.25% 1.25% 0;
  width: 19%;
  flex: 0 0 19%;
}
#js-pre .img-box .img-border{
  position: relative;
  display: inline-block;
  padding-bottom: 80%;
  width: 100%;
  height: 0;
  overflow: hidden;
}
#js-pre .img-box:nth-child(5n){
  margin-right: 0;
}
#js-pre .img-box .img-border img{
  position: absolute;
  width: 100%;
  height: 100%;
}

#js-pre .img-box .img-border span {
  display: block;
  position: absolute;
  top: 10px;
  right: 5px;
  color: #fff;
  font-size: 25px;
  z-index: 2;
  line-height: 0;
}

.r_detail_wrapper .r_shop_sendComment .r_shop_sendButton{
  display: inline-block;
  padding: 8px 20px;
  margin-top: 10px;
  background: #d42333;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
}

.r_detail_wrapper .r_shoplist .r_detailItem .r_newlist li .scores{
  display: flex;
  align-items: center;
  font-size: 14px;
}
.r_detail_wrapper .r_shoplist .r_detailItem .r_newlist li .scores .stars{
  margin-right: 5px;
  width: auto !important;
  line-height: 10px; 
}
.r_detail_wrapper .r_shoplist .r_detailItem .r_newlist li .info_address{ 
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem{
  margin: 10px 0;
  padding-bottom: 10px;
  display: flex;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .avatar{
  display: block;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .avatar1{
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content{
  margin-left: 20px;
  flex: 1;
  min-width: 0;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .user_info{
  font-size: 14px;
  color: #333;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .scores{
  margin-top: 5px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .scores span{
  margin-right: 5px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .scores .stars{
  width: auto !important;
  line-height: 10px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_desc{
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_imgArr{
  margin-top: 15px;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden; 
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_imgArr .item{
  margin-bottom: 0;
  display: block;
  margin-right: 10px;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_imgArr .item img{
  width: 100%;
  height: 100%;
}
.shop_imgArr::-webkit-scrollbar {/*滚动条整体样式*/
  width: 8px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 8px;
  scrollbar-arrow-color:red;
}
.shop_imgArr::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  border-radius: 5px;
  background: rgba(0,0,0,0.2);
  scrollbar-arrow-color:red;
}
.shop_imgArr::-webkit-scrollbar-track {/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 0;
  background: rgba(0,0,0,0.1);
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_time{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
  margin-top: 15px;
  font-size: 12px;
  color: #999;
  border-bottom: 1px solid #eee;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_time1{
  margin-top: 5px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_time span{
  display: inline-block;
  margin-right: 10px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_time .shop_actions{
  float: right;
  flex: 1;
  text-align: right;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .content .shop_time .shop_actions a{
  margin-left: 10px;
  color: #999;
}
.r_detail_wrapper .r_shop_commentList .r_shop_moreComment{
  margin-top: 20px;
  display: block;
  text-align: right;
  font-size: 14px;
  color: #999;
}

.Picture{overflow: hidden; display: none; margin: 0 auto; position: fixed; top:0; left:0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.7); z-index: 889;}
.Picture-box{ overflow: hidden; width: 100%; height: 100%; position: relative;}
.Picture-box .theme{ overflow: hidden; width: auto; height:90%;position: absolute; top:0; left:0;  bottom: 0; right:0; margin: auto;}
.Picture-box .open  { overflow: hidden; width: 43px; height: 58px;font-size: 16px; color: #666; text-align: center; background: rgba(0, 0, 0, 0.4); position: absolute; top:0;bottom: 0; margin: auto; z-index: 2;}
.Picture-box .mine  { left:0; }
.Picture-box .Next{ right:0;}
.Picture-box .theme img{ overflow: hidden; width: auto; height: 100%; margin: 0 auto; display: block;  object-fit: cover;}
.Picture-box .gb-btn{ overflow: hidden; width: 30px; height: 30px; line-height: 30px; display: block; position: absolute; top:10px; right:10px; font-size: 32px; color: #fff; text-align: center; }

/* shopComment */
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_myReply,
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_otherReply{
  margin-top: 30px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_replyTitle{
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_myReply{
  flex: 0 0 100%;
  width: 100%;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_myReply .shop_replyArea{
  margin-top: 10px;
  width: 100%;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_myReply .shop_replyArea textarea{
  padding: 20px;
  width: 100%;
  height: 120px;
  resize: none;
  box-sizing: border-box;
  font-size: 14px;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.r_detail_wrapper .r_shop_commentList .r_shop_commentItem .shop_myReply .shop_replyButton{
  display: inline-block;
  padding: 8px 20px;
  margin-top: 10px;
  background: #d42333;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
}


