.mod-360-item-list {
  position: relative;
  margin: 0 auto;
}
@media print, screen and (min-width: 769px) {
  .mod-360-item-list {
    width: 680px;
    height: 510px;
  }
}
@media screen and (max-width: 768px) {
  .mod-360-item-list {
    width: 100vw;
    height: 75vw;
  }
}
.mod-360-item-list:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url(/bc/images/gashapononline/icon360.png) left top no-repeat;
  background-size: cover;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .mod-360-item-list:after {
    top: 10px;
    right: 5%;
    width: 40px;
    height: 40px;
  }
}

.mod-360-item {
  display: block;
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
}

.mod-360-btn-list {
  position: relative;
  margin: 10px;
  margin-top: -20px;
  text-align: center;
}
.mod-360-btn-list > div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #555;
  padding: 8px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.mod-360-btn {
  margin: 1px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media screen and (max-width: 768px) {
  .mod-360-btn img {
    width: 50px;
    height: 50px;
  }
}
.mod-360-btn:hover {
  opacity: 0.8;
}
.mod-360-btn.is-current:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  border-radius: 4px;
  border: 2px solid red;
}