.sn-window {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.sn-window .bg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sn-window .content {
  width: 10rem;
  height: 5rem;
  border-radius: 0.1rem;
  background-color: #fff;
  display: flex;
  overflow: hidden;
  position: relative;
}
.sn-window .content .close {
  position: absolute;
  right: 0.1rem;
  width: 0.3rem;
  top: 0.1rem;
  cursor: pointer;
}
.sn-window .content .left {
  width: 2.5rem;
}
.sn-window .content .left li {
  width: 100%;
  height: 1rem;
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #333;
  font-size: 0.2rem;
  font-weight: bold;
}
.sn-window .content .left li.active {
  background-color: #e60000;
  color: #fff;
}
.sn-window .content .right {
  flex: 1;
  padding: 0.2rem;
}
.sn-window .content .right .container {
  display: none;
}
.sn-window .content .right .container .top {
  height: 1rem;
  padding-top: 0.3rem;
}
.sn-window .content .right .container .top .title {
  font-size: 0.18rem;
  color: #333;
}
.sn-window .content .right .container .top .des {
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.2rem;
}
.sn-window .content .right .container img {
  width: 100%;
  margin-top: 0.3rem;
}
