
/**** 微信弹窗 start ****/
.chat-popup-box{
    position: relative;
}
.chat-popup-box .chat-popup-bg{
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    display: none;
}
.chat-popup-box .chat-popup{
    position: fixed;
    top: 40vh;
    left: 50vw;
    margin-left: -150px;
    min-width: 300px;
    min-height: 200px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    height: 200px;
}
.chat-popup-box .chat-popup-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chat-popup-box .popup-text{
    visibility: hidden;
}
.chat-popup-box .popup-title::before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../image/wechat.png');
    background-size: cover;
    margin-right: 5px;
}
.chat-popup-box .popup-title{
    font-size: 16px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
}
.chat-popup-box .popup-phone{
    font-size: 25px;
    margin-top: 8px;
    font-weight: bold;
}
.chat-popup-box .popup-btn{
    padding: 10px 40px;
    font-size: 14px;
    background-color: #f65129;
    color: #fff;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
}
.chat-popup-box .popup-close{
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(45deg);
    font-size: 30px;
    line-height: 1;
    color: #666;
    cursor: pointer;
}
/**** 微信弹窗 start ****/


/**** 点击图片 全屏展示 start ****/
#fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

#fullscreen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#closeButton {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 5px 10px;
    background-color: white;
    border: none;
    cursor: pointer;
}
/**** 点击图片 全屏展示 end ****/