
#slider {
    width: 430px;
    height: 70px;
    position: relative;
    border-radius:4px;
    background-color: #333438;
    overflow: hidden;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
}

#slider_bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #1780C1;
  z-index: 1;
}

#label {
    width: 46px;
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    border: 1px solid #cccccc;
    background-color: #fff;
    background-image: url(../images/common/key.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    z-index: 3;
    cursor: move;
    color: #000000;
    font-size: 0;
    font-weight: 900;
}

#labelTip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #fff;
  line-height: 70px;
  text-align: center;
  z-index: 2;
}

.txtRoll {
    background-image: linear-gradient(to right,black,black, white,black,black, white,black);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-background-size: 200% 100%;
    animation: bgp 3s infinite linear;
}

@-webkit-keyframes bgp {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@media only screen and (max-width:1600px){
    #slider{height: 64px;}
    #labelTip{line-height: 64px;}
    #label{height: 64px;}
}
@media only screen and (max-width:1440px){
    #slider{height: 56px;width: 370px;font-size: 18px;}
    #labelTip{line-height: 56px;}
    #label{height: 56px;}
}
@media only screen and (max-width:1366px){
    
}
@media only screen and (max-width: 992px){
    #slider{height: 46px;width: 100%;font-size: 14px;}
    #labelTip{line-height: 46px;font-size: 14px;}
    #label{height: 46px;}
}