 /*关闭弹窗*/
 .popBox {
   display: none;
   z-index: 9999;
 }

 /*打开弹窗*/
 .popBox:target {
   align-items: center;
   display: flex;
   justify-content: center;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
 }

 /*设置弹窗内容*/
 .popBox .con {
   background-color: white;
   border-radius: 5px;
   padding: 1.5rem;
   position: relative;
   width: 55rem;
   height: 55rem;
 }

 .popBox .con div {
   width: 100%;
   height: 100%;
   text-align: center;
 }

 .popBox .con img {
   width: 50rem;
   height: 50rem;
 }

 /*设置弹窗内容*/
 .popBox .con2 {
   background-color: white;
   border-radius: 5px;
   padding: 1.5rem;
   position: relative;
   width: 35rem;
   height: 35rem;

 }

 .popBox .con2 div {
   width: 100%;
   height: 100%;
   text-align: center;
 }

 .popBox .con2 div img {
   width: 30rem;
   height: 30rem;
 }

 .popBox strong {
   font-size: 2rem;
 }

 /*关闭按钮*/
 .popBox .close {
   display: block;
   position: relative;
 }

 .popBox .close::after {
   align-items: center;
   color: white;
   content: "×";
   cursor: pointer;
   background-color: rgb(27, 27, 27);
   border-radius: 50%;
   display: flex;
   font-size: 1.25rem;
   justify-content: center;
   position: absolute;
   right: -2.5rem;
   top: -2.5rem;
   height: 2rem;
   width: 2rem;
   z-index: 2;
 }

 /*弹窗遮罩层*/
 .popBox::before {
   content: "";
   cursor: default;
   background-color: rgba(173, 173, 173, 0.66);
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
 }