.cookies_tips {
    display: none;
    position: fixed;
    z-index: 800;
    width: 100%;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.cookies_wrap {
    padding: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.cookies_wrap:after {
    content: '';
    display: table;
    clear: both;
}

.cookies_wrap a#closeBtn {
    position: absolute;
    right: 0;
    top: 0px;
}

.cookies_wrap a#closeBtn:before {
    font-family: iconfont;
    content: '\e690';
    font-size: 30px;
}

.cookies_wrap h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 25px;
}

.cookies_wrap p {
    /* font-size: 13px; */
    /* line-height: 20px; */
    /* width: calc(100% - 150px); */
    /* float: left; */
    /* padding-right: 20px; */
}

.cookie_btn {
    /* margin-top:10px; */
    width: 100%;
    text-align: center;
    /* float: left; */
}

.cookie_btn a {
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    color: #1b1b1b;
    /* background:#0254a6; */
    /* border: 1px solid #000; */
    text-decoration: underline;
}


@media only screen and (max-width: 768px){
.cookies_tips{
    width: 94%;
}
.cookie_btn{
    text-align: left;
}
}

