@charset "utf-8";

.ding-opction-center { margin: 0 auto;}
.ding-lightBox-container {
    position:fixed;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    z-index:9999;
}
.ding-lightBox-container .content {
    position:relative;
    display: block;
    text-align: center;
}
.ding-lightBox-container button {
    position:relative;
    display:block;
    padding: 15px;
    font-size: 14px;
    width: 200px;
    background: none;
    border: 2px solid white;
    color: white;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
.ding-lightBox-container button:hover {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    border: 2px solid red;
    color: red;
    cursor: pointer;
}