.empty-div {
    text-align: center;
    line-height: 150px;
}

/* 底部 */
.footer-bg {
    margin-top: 20px;
    background: #ffffff;
}

.footer {
    width: 1200px;
    padding-top: 30px;
    margin: 0 auto;
    /* padding-bottom: 21px; */
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    /* display: flex;
    justify-content: space-between; */
}

.footer-item {
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.footer-item-product {
    width: 150px;
}

.footer-item-aboutus {
    width: 150px;
}

.footer-item-business {
    width: 180px;
}

.footer-item-tech {
    width: 180px;
}

.footer-item-content {
    width: 172px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    line-height: 20px;
    margin-bottom: 20px;
}

.footer-item .item-line {
    font-size: 12px;
    color: #666666;
    line-height: 28px;
    display: block;
}

.footer-item-code {
    text-align: center;
}

.footer-code {
    width: 92px;
    height: 92px;
    border: 1px solid #ebebeb;
}

.footer-bottom {
    width: 1200px;
    font-size: 12px;
    color: #333333;
    line-height: 77px;
    text-align: left;
    margin: 0px auto 0;
}

.footer-bottom img {
    width: 12px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.clearfix::after,
.clearfix::before {
    content: "";
    display: block;
    height: 0;
    line-height: 0;
    clear: both;
}

/* 友情链接 */
.related {
    /*margin-top: 20px;*/
    background: #fff;
}

.relatedlinks {
    width: 1200px;
    padding-top: 16px;
    padding-bottom: 15px;
    margin: 0 auto;
    border-bottom: 1px solid #ebebeb;
}

.relatedlinks .titlelinks {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 20px;
    display: -webkit-box;
}

.relatedlinks .titlelinks .tonelinks {
    margin-right: 40px;
}

.relatedlinks .titlelinks .tlinks {
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.relatedlinks .titlelinks .tlinks a {
    color: #666666;
}

.relatedlinks .titlelinks .tlinks a:hover {
    color: #666666;
}

.relatedlinks .titlelinks .tlinks span {
    margin-right: 40px;
}

.relatedlinks .titlelinks .tlinks span:nth-child(7) {
    margin-right: 0px;
}

/* 公司域名下  引导页 友情链接 */
.companylinks {
    padding-left: 81px;
    width: 1200px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px auto;
    background: #f9f9f9;
    display: none;
    /* border-bottom: 1px solid #ebebeb; */
}

.companylinks .titlelinks {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 20px;
    display: -webkit-box;
}

.companylinks .titlelinks .tonelinks {
    margin-right: 40px;
}

.companylinks .titlelinks .tlinks {
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    width: 1000px;
}

.companylinks .titlelinks .tlinks a {
    color: #666666;
}

.companylinks .titlelinks .tlinks a:hover {
    color: #666666;
}

.companylinks .titlelinks .tlinks span {
    margin-right: 40px;
}

.companylinks .titlelinks .tlinks span:nth-child(7) {
    margin-right: 0px;
}

/* 弹窗 */
#tipsPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    max-width:550px;

    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 101;
    /* 显示在遮罩层上面 */
}

#tipsOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明黑色 */
    z-index: 100;
    /* 显示在弹窗上面 */
    display: none;
    /* 默认隐藏 */
}

.tipsTop{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom:15px;

}
.tipsTop span{
    text-align: center;
    width:100%;
    height:28px;
    font-size: 18px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
}
.tipsTop button{
    height:18px;
    width:18px;
    background-image:url(../images/esc.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.tipsPopup .tipsContent{
    font-size:14px;
    border-top:1px solid rgba(0, 0, 0, 0.1);
    padding:20px 0;
}

.clsbtn{
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
#closePopup{
    display:flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    width:180px;
    height:35px;
    background: #FF4743;
    border-radius: 4px;
    margin-top:10px;
    
}