/*访问第三方链接提示框样式*/
.clear:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}
.third-url-tips{
    color: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}
.third-url-tips .tips-con{
    width: 390px;
    height: auto;
    background: #fff;
    margin: 300px auto auto auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,.1), 0 0 16pc hsla(0,0%,100%,.3);
    border: 5px solid hsla(0,0%,100%,.2);
}
.third-url-tips .tips-con .tips-title{
    margin: 0;
    font-size: 16px;
    line-height: 1.428571429;
    min-height: 16.43px;
    padding: 5px 10px 10px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 700;
    cursor: default;
    border-bottom: 1px solid #e5e5e5;
}
.third-url-tips .tips-con .tips-title .wx-ts{
    float: left;
}
.third-url-tips .tips-con .tips-title .tips-close{
    float: right;
    opacity: .2;
    padding: 0 4px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    cursor: pointer;
}
.third-url-tips .tips-con .tips-text{
    width: auto;
    padding: 10px;
}
.third-url-tips .tips-con .tips-text span{
    display: inline-block;
}
.third-url-tips .tips-con .tips-text .ts{
    font-size: 16px;
    color: #666;
}
.third-url-tips .tips-con .tips-text .third-url{
    margin-top: 5px;
    font-size: 14px;
    color: red;
    cursor: pointer;
    width: 370px;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.third-url-tips .tips-con .tips-btn{
    float: right;
    padding: 10px 0 20px 10px;
}
.third-url-tips .tips-con .tips-btn .agree-btn{
    padding: 6px 10px;
    margin-right: 20px;
    background: #03b4f5;
    color: #fff;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
.third-url-tips .tips-con .tips-btn .agree-btn:hover{
    background: #2ec5fc;
}
.third-url-tips .tips-con .tips-btn .refuse-btn{
    padding: 6px 10px;
    margin-right: 20px;
    background: #03b4f5;
    color: #fff;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
