/*-----------------------------------------*/
/****************变量*******************/
/*-----------------------------------------*/
/*-----------------------------------------*/
/****************公用样式*******************/
/*弹性盒子*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.justify-Between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-Around {
  -webkit-box-pack: space-around;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.justify-Center {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-End {
  -webkit-box-pack: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.align-Center {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.align-baseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.align-Start {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex_1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  min-width: 0;
}

.text_over {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
}

.line-clamp3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
}

/*-----------------------------------------*/
.clear-both::after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}

.lf {
  float: left;
}

.rt {
  float: right;
}

.transition {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

.transform-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hover-transform-scale {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.text-ban {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.track-list {
  scrollbar-face-color: #c7c7c7;
  scrollbar-highlight-color: #c7c7c7;
  scrollbar-3dlight-color: #c7c7c7;
  scrollbar-darkshadow-color: #c7c7c7;
  scrollbar-Shadow-color: #c7c7c7;
  scrollbar-arrow-color: #c7c7c7;
  scrollbar-track-color: #ebebeb;
}

.track-list::-webkit-scrollbar {
  width: 7px;
  height: 9px;
}

.track-list::-webkit-scrollbar-button:end:increment,
.track-list::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 0;
  background-color: transparent;
}

.track-list::-webkit-scrollbar-track-piece {
  -webkit-border-radius: 0;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  background: #ebebeb;
}

.track-list::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: rgba(250, 4, 77, 0.8);
  -webkit-border-radius: 4px;
}

.track-list::-webkit-scrollbar-thumb:horizontal {
  width: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
}

/*-----------------------------------------*/
/****************元素样式*******************/
/*-----------------------------------------*/
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/** 清除内外边距 **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* 要注意表单元素并不继承父级 font 的问题 */
input,
select,
textarea {
  font-size: 100%;
}

/* 去掉各 table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align */
th {
  text-align: inherit;
}

/* 去除默认边框 */
fieldset,
img {
  border: 0;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}

i {
  font-style: normal;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}

/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 16px;
}

h3,
h4,
h5,
h6 {
  font-size: 14px;
}

/* 解决ie下重复最后字符 */
q:before,
q:after {
  content: '';
}

/* 统一上标和下标 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}

/** 设置默认字体 **/
body,
button,
input,
select,
textarea {
  font: 14px helvetica neue, arial, hiragino sans gb, microsoft yahei, sans-serif;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
small {
  font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */
/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}

/** 重置文本格式元素 **/
a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover {
  color: #5da1fd;
}

/** 清除选中状态蓝色边框 **/
a,
img,
input,
select,
textarea {
  outline: none;
  border: none;
}

/** 定义布局方式 **/
* {
  box-sizing: border-box;
}

input[type=submit] {
  -webkit-appearance: none;
}

/**************************/
/********页面样式**********/
/**************************/
body {
  max-width: 767px;
  margin: 0 auto;
  color: #fff;
  background: #a145ff;
}

/* 新样式 */
.down-bg img {
  width: 100%;
  display: block;
}

.down-bg-btn {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 9.8rem;
  overflow: hidden;
}

.down-bg-btn p {
  font-size: 0.28rem;
  color: #FFFFFF;
}

.down-bg-btn p i {
  font-size: 0.34rem;
  color: #FFF538;
}

#btn-svga {
  width: 5.5rem;
  margin: 0 auto;
  margin-top: -0.6rem;
}

.down-banner {
  background: linear-gradient(0deg, #A246FF 0%, #6206D3 100%);
  margin-top: -1px;
  position: relative;
}

.down-banner-big img {
  width: 7.5rem;
}

.down-banner-box {
  padding: 0 0.26rem;
  margin-top: 0.6rem;
}

.down-banner-box-list {
  width: 3.37rem;
  height: 5.62rem;
  background-color: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.down-banner-box-list img {
  width: 3.37rem;
  height: 3.78rem;
}

.down-banner-box-list>div {
  padding: 0 0.28rem;
}

.down-banner-box-list>div>div{
  padding-top: 0.10rem;
}
.down-banner-box-list>div div span {
  font-size: 0.32rem;
  color: #333333;
}

.down-banner-box-list>div div i {
  font-size: 0.28rem;
  color: #888888;
}

.down-banner-box-list>div div b {
  width: 0.88rem;
  height: 0.36rem;
  font-size: 0.22rem;
  color: #C784FD;
  background: url('../images/voice_bg.png') no-repeat;
  background-size: 100% 100%;
  text-indent: 0.25rem;
  font-weight: normal;
}
.down-banner-box-list>div p{
  font-size: 0.28rem;
  color: #333333;
  padding: 0.2rem 0 0 0 ;
}
.down-foot{
  padding: 0.80rem 0;
}
.down-foot img{
  /* width: 4.75rem; */
  height: 0.74rem;
}
.down-foot p{
  width: 100%;
  text-align: center;
  font-size: 0.24rem;
  color: #C58DFF;
  padding-top: 0.28rem;
}
#index-svga{
  width: 7.5rem;
  height: 15.42rem;
  overflow: hidden;
  position: absolute;
  top: 0;
}