@charset "utf-8";
html,
body {
    min-width: 768px;
    max-width: 768px;
    width: 768px;
    margin: 0 auto;
    padding: 0;
    font-size: 0.75rem;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    -webkit-highlight: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    -webkit-overflow-scrolling: touch;
}

#viptoneWindow {
    position: fixed;
    z-index: 100;
    background: #1d1d1db5;
    width: 100%;
    height: 100%;
    top: 0;
}

.showToneInfo {
    margin: 0;
    border: 0;
}

.showToneInfo .sfzf {
    left: 500px;
}

.showToneInfo .sfzf cite {
    background: none;
}

.showToneInfo .tone .tf:hover {
    color: #246FB5;
}

.showToneInfo h1 {
    height: 45px;
}

.loading {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff url(../images/loading.gif) no-repeat center center;
}

header {
    position: fixed;
    left: 0;
    top: -400px;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    z-index: 20;
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
    color: #fff;
    font-size: 26px;
    height: auto;
}

.backplace {
    background: rgba(0, 0, 0, 0.3) url(../images/back-ico.png) no-repeat 10px 25px;
    height: 65px;
}

.set {
    margin: 10px 15px 10px 15px;
}

.set code {
    display: block;
    width: 70px;
    height: 34px;
    overflow: hidden;
    line-height: 34px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    border: 1px solid #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 22px;
}

.keys,
.plays {
    margin: 15px 0;
}

.ks,
.capo {
    margin: 15px 0;
    clear: both;
    height: 30px;
}

.ks span,
.capo span {
    display: block;
    float: left;
    padding: 0 10px;
    height: 32px;
    overflow: hidden;
    line-height: 32px;
    text-align: center;
    margin-right: 14px;
}

.ks.mk span {
    font-size: 18px;
    padding: 0 8px;
    margin: 0 5px;
}

.ks span:last-child,
.capo span:last-child {
    margin: 0;
}

.ks span.select,
.plays span.select {
    background: #583dcb;
    border-radius: 26px;
}

.capo span {
    min-width: 118px;
    margin: 0 10px;
}

.setint {
    border-top: 1px solid #474747;
    padding: 20px 0 10px 10px;
}

.setint .hr {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 6px;
    vertical-align: middle;
    padding: 0 10px;
    margin-right: 5px;
}

.setint .hr ins {
    text-decoration: none;
    font-size: smaller;
}

.setint button {
    display: inline-block;
    height: 40px;
    border: 0;
    overflow: hidden;
    outline: none;
    font-size: 22px;
    font-weight: 700;
    vertical-align: middle;
    background-color: transparent;
    padding: 0;
}

.setint button.s {
    color: #573CCD;
}

.fontx {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/font-.png);
}

.fontd {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/font+.png);
}

.schord {}

.ukschord {}

.nsChord {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/chord_no.png);
}

.setint button.screenshot {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/screenshot.png);
}

.setint .easy,
.setint .jishu {}

.setint .tips {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/chord_tips.png);
}

.setint .report {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/report_ico.png);
}

.setint .jx {
    width: 40px;
    font-size: 0px;
    text-indent: -1000px;
    background: url(../images/chord_jx.png);
}

#app_sc {
    display: none;
}

.content {
    width: 768px;
    position: relative;
}

.tonebox {
    width: 768px;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: margin-left 0.3s ease-in-out;
    transition: margin-left 0.3s ease-in-out;
}

@-webkit-keyframes upRotate {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(180deg);
    }
}

@-webkit-keyframes downRotate {
    0% {
        -webkit-transform: rotateZ(180deg);
    }
    100% {
        -webkit-transform: rotateZ(0deg);
    }
}

.arrow {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 96px;
    height: 96px;
    background: url(../images/down.png);
    z-index: 12;
    opacity: 0.5;
    display: none;
    -webkit-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
    -webkit-animation: downRotate 0.3s linear;
    -webkit-animation-fill-mode: forwards;
}

.arrow.up {
    -webkit-animation: upRotate 0.3s linear;
    -webkit-animation-fill-mode: forwards;
}

.showMovie {
    font-size: 16px;
    position: absolute;
    left: 768px;
    top: 0;
    width: 768px;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
    display: none;
}

.showMovie iframe {
    width: 100%;
    height: 440px;
    background: #000;
}

.showMovie p {
    padding: 0 20px;
}

.showMovie p span {
    display: inline-block;
    background: #0a7bb0;
    color: #fff;
    padding: 5px;
    margin-right: 10px;
}

.movies {
    padding-bottom: 10px;
    min-height: 100%;
}

.mback {
    background: #000 url(../images/back-ico.png) no-repeat 10px 25px;
    height: 65px;
}

footer {
    position: fixed;
    display: flex;
    justify-content: center;
    left: 0;
    bottom: -60px;
    height: 60px;
    background: #000 url(../images/menu-bg.png);
    width: 100%;
    z-index: 20;
    -webkit-transition: bottom 0.2s ease-in-out;
    transition: bottom 0.2s ease-in-out;
}

footer div {
    width: 60px;
    height: 60px;
    position: relative;
    background: url(../images/fav-ico.png) no-repeat center center;
    overflow: hidden;
    float: left;
    /*margin:0 98px;*/
    margin: 0 158px;
}

footer div.down {
    background-image: url(../images/down-ico.png);
}

footer div.movie {
    background-image: url(../images/movie-ico.png);
}

footer span {
    display: block;
    width: 18px;
    height: 18px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

footer span.ok {
    background: url(../images/ok-ico.png);
}

footer code {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    color: #fff;
    background-color: #e53600;
    height: 24px;
    overflow: hidden;
    text-align: center;
    line-height: 24px;
    border-radius: 24px;
    padding: 0 5px;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 12px;
}

.apptip {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 15;
    display: none;
}

.apptip span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    font-size: 30px;
    color: #fff;
    padding: 20px 30px;
    margin: 400px auto 0 auto;
    border-radius: 10px;
    height: 44px;
}

.appmask {
    position: fixed;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    z-index: 555;
    display: none;
}

.autoscroll {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 12;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 36px;
    padding: 10px;
    opacity: 0.2;
    display: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.autoscroll.show {
    opacity: 1;
}


.livelocation {
    position: fixed;
    right: 10px;
    top: 70px;
    z-index: 13;
    border-radius: 36px;
    padding: 10px;
    opacity: 0.6;
    display: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 12px;
    vertical-align: middle;
    height: 36px;
}

.live-close-btn {
    float: right;
    display: inline;  
    top: 50px;
    margin: 0 16px 0 0;
    color: rgba(0,0,0,255); 
    font-size: 30px;
}


.autoscroll span {
    display: inline-block;
    background-image: url(../images/as_play.png);
    background-size: contain;
    width: 36px;
    height: 36px;
    margin-right: 12px;
    vertical-align: middle;
}

.autoscroll span.play {
    background-image: url(../images/as_stop.png);
}

input[type=range] {
    -webkit-appearance: none;
    width: 150px;
    border-radius: 10px;
    /*这个属性设置使填充进度条时的图形为圆角*/
    vertical-align: middle;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 15px;
    border-radius: 10px;
    /*将轨道设为圆角的*/
    box-shadow: 0 1px 1px #def3f8, inset 0 .125em .125em #0d1112;
    /*轨道内置阴影效果*/
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 25px;
    width: 25px;
    margin-top: -5px;
    /*使滑块超出轨道部分的偏移量相等*/
    background: #ffffff;
    border-radius: 50%;
    /*外观设置为圆形*/
    border: solid 0.125em rgba(205, 224, 230, 0.5);
    /*设置边框*/
    box-shadow: 0 .125em .125em #3b4547;
    /*添加底部阴影*/
}

input[type=range]::-moz-range-progress {
    background: linear-gradient(to right, #059CFA, white 100%, white);
    height: 13px;
    border-radius: 10px;
}

input[type=range]::-ms-track {
    height: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 1px #def3f8, inset 0 .125em .125em #0d1112;
    border-color: transparent;
    /*去除原有边框*/
    color: transparent;
    /*去除轨道内的竖线*/
}

input[type=range]::-ms-thumb {
    border: solid 0.125em rgba(205, 224, 230, 0.5);
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #ffffff;
    margin-top: -5px;
    box-shadow: 0 .125em .125em #3b4547;
}

input[type=range]::-ms-fill-lower {
    /*进度条已填充的部分*/
    height: 22px;
    border-radius: 10px;
    background: linear-gradient(to right, #059CFA, white 100%, white);
}

input[type=range]::-ms-fill-upper {
    /*进度条未填充的部分*/
    height: 22px;
    border-radius: 10px;
    background: #ffffff;
}

input[type=range]:focus::-ms-fill-lower {
    background: linear-gradient(to right, #059CFA, white 100%, white);
}

input[type=range]:focus::-ms-fill-upper {
    background: #ffffff;
}


* {box-sizing:border-box}
body {font-family: Verdana,sans-serif;}
.mySlides {
    display:none;}
 
 .slideshow-container  .checkRegion {
      position: absolute;
      padding-top: 20px;
      top: 0;
      right: 1%;
 }

.slideshow-container .button {
  
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 30px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0px;

}

.slideshow-container .button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.slideshow-container .button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.slideshow-container .button:hover span {
  padding-right: 25px;
}

.slideshow-container .button:hover span:after {
  opacity: 1;
  right: 0;
}

.slideshow-container {
  max-width: 1000px;
  display: inline-block;
  position: fixed;
  margin: auto;
  z-index: 1000;
}
 
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 50px;
  margin-top: -22px;
  padding: 16px;
  color: #8A2BE2;
  font-weight: bold;
  font-size: 50px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
 
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.next {
  right: 5%;
  border-radius: 3px 0 0 3px;
}
 
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
 
.slideshow-text {

  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
 
.slideshow-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
 
.dot {
  cursor:pointer;
  height: 32px;
  width: 32px;
  margin: 0 2px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
 
.active, .dot:hover {
  background-color: #717171;
}
 
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}


 
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
 
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
