:root{--form-color: #2286db;}



.form{width: 70%;margin: 10px auto;}

/* 歌手信息 */

.singer-name{display: flex;margin-bottom: 10px;}


.singer{
    padding: 7px;
    color: #fff;
    padding: 2px 8px;
    background: #3583fb;
    border-radius: 30px;
    font-size: 0.8em;
}
.singername{
  /* font-size: 1.4em; */
  margin-left: 5px;
}

.singer-intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.singer-intro-label{
  margin:10px 0; 
}

.singer-intro-content{
  text-indent: 4em;
}



.user{
  display: flex;
  background: #f9f9f9;
  height: auto;
  position: relative;
  padding: 10px;
}


.user-id{
  flex-direction: column;
  align-items: center;
}

.user.user-id {}


.user-img{
    height: 300px;
    width: 300px;
    min-width: 300px;
    }
.user-img img{
  width: 100%;
  object-fit: cover;
}

.user-info{
  margin-left: 50px;
  width: 500px;
}
.icon-mod{
  background-image: url(../img/modify.png);
}

.icon-user{
  background-image: url(../img/user.png);
}

.modify{
  position: absolute;
  right: 10px;
  font-size: 0.9em;
  bottom: 10px;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  cursor: pointer;
  align-items: center;
  transition: background 0.3s;
}


.modify:hover{
  background: #d3d3d3;
}


.user-id-tip{
  flex: auto;
  margin: 20px;
}





/* 专辑信息 */

.album{
  display: flex;
  background: #f9f9f9;
  /* padding: 40px 0; */
  justify-content: space-evenly;
}
.album-img{
  
  background: #eee;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 400px;
}

.album-img-cover{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
  background: #555;
  background-repeat: no-repeat;
  background-size: cover;
}

.album-upload-tip{
  padding-top: 30px;
    color: #999;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.ups-btn {
    position: relative;
    text-align: center;
    line-height: 100px;
    cursor: pointer;
    height: 100%;
}


.form__import_ic_h, .form__import_ic_v {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -17px;
    background-color: #999;
}

.form__import_ic_h {
    width: 29px;
    height: 2px;
    margin-left: -14px;
}

.form__import_ic_v {
    width: 2px;
    height: 29px;
    margin-top: -30px;
}


.form .sepline {
    height: 10px;
    /* background: transparent; */
    margin: 10px auto;
    /* box-shadow: 0px 2px 20px 3px black; */
}

.sepline {}


.from input{
  outline: none;
  padding: 5px;
}

.tip{
	font-size: 20px;
	padding: 20px 0 0;
}




.album input:required:valid, .album textarea:required:valid {
    background: #fff url(../img/valid.png) no-repeat 98% center;
}


.album input:required, .album textarea:required,.album select:required{
    background: #fff no-repeat 98% center;
}


.album select{
  -webkit-appearance: none;
}

.valid:required {
  background: #fff url(../img/valid.png) no-repeat 98% center !important;
}
.invalid:required{
  background: url(../img/red_asterisk.png) no-repeat 98% center;
}


.album textarea{
  min-width: 400px;
}

.album-form{width: 600px;}


.form-line{
  display: flex;
  margin: 20px 0;
  align-items: center;
  min-height: 50px;
}

.label{
  width: 150px;
  margin: 0 10px;
}
.form-line>div{
  flex: none;
}


.user input{
    outline: none;
    border: none;
    padding: 20px 40px 20px 20px;
    width: 100%;
    box-shadow: 0 0 5px #eee;
    font-size: 1em;
    color: #6c6c6c;
    background: #fff;
    font-family: sans-serif;
}

#publicForm input,.album-form select,textarea{
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 20px 40px 20px 20px;
  width: 400px;
  box-shadow: 0 0 5px #c6c6c6;
  font-size: 1em;
  color: #6c6c6c;
  background: #fff no-repeat 98% center;
  font-family: sans-serif;
}

textarea{
  height: 200px;
}

input:disabled{
  background:#ececec;
}


.radio-group{
  background: #fff;
}

.choice{
    position: relative;
}
.choice .radio{
    position: relative;
    font-weight: 400;
    color: #0c4757;
    padding-left: 25px;
    cursor: pointer;
    margin: 10px;
}
.choice .radio input{
    position: absolute;
    left: -9999px;
}
.choice .radio i{
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    outline: 0;
    border: 3px solid #b3b3b3;
    background: #f9f9f9;
    border-radius: 50%;
    transition: border-color .3s;
    -webkit-transition: border-color .3s;
}
.choice .radio input:checked+i{
    border-color: var(--form-color);
}
.choice .radio input+i:after{
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--form-color);
    opacity: 0;
    transition: opacity .1s;
    -webkit-transition: opacity .1s;
}
.choice .radio input:checked+i:after{
    opacity: 1;
}

.ness{
  background: no-repeat center;
  width: 32px;
  height: 30px;
  padding: 5px;
}

.add-btn{
  padding: 10px;
  text-align: center;
  font-size: 1em;
}
.btn{
  color: #eee;
  display: block;
  font-weight: 600;
  width: 100px;
  margin: 50px auto;
  padding: 10px 20px;
  background: #0751cc;
  text-decoration: none;
  border-radius: 10px;
  transition: background 300ms;
  border: none;
}
.btn:hover{
  background: #b80000;
  cursor: pointer;
}


.upload-content{
  display: flex;
}


#extraArea{
  flex-direction: column;
}

#extraArea input[name="del"]{
  background: #e9e9e9;
  flex: 1;
  margin-left: 10px;
  color: #afafaf;
}


.upload-ing:after{
  content: "";
  background: url(../img/loading.gif) no-repeat center;
  min-width: 32px;
  min-height: 32px;
  margin: 10px;
}


.upload-ok:after{
  content: "";
  background: url(../img/valid.png) no-repeat center;
  min-width: 32px;
  min-height: 32px;
  margin: 10px;
}


.upload-ok:err{
  content: "";
  background: url(../img/err.png) no-repeat center;
  min-width: 32px;
  min-height: 32px;
  margin: 10px;
}

.line-show{

}

.line-hide{display: none;}
@media only screen and (min-width: 700px){
#publicForm input{/* width: 355px; *//* padding:10px 0; */}
#publicForm select{width: 400px;}
.form-line{/* margin:0; */width: 533px;}
.radio-group{text-align: left;padding: 0;width: 400px;line-height: 64px;}
.class_textarea{padding: 0;width: 255px;}
.label{text-align: right;}
.form-line .ness{margin-left:-42px;}
.album textarea{min-width:294px;}
.choice .radio{margin-left:20px;}
.btn{margin:0 auto;}
.album-img{background-color: #f9f9f9;}
}

@media only screen and (max-width: 700px){

.user input{padding: 10px;}


.album-form .label{
  width: 70px;
}

.form {
    width: 100%;
    margin: 0;
}

.user-img {
    height: 200px;
    width: 200px;
    min-height: 50px;
    margin: auto;
    min-width: 50px;
}
.singer-intro-content {
    text-indent: 0;
}
.modify {
    right: 100px;
    bottom: -30px;
}
.user-info {
    margin-left: 20px;
}

#publicForm input,.album-form select,#publicForm textarea {
    width: 200px;
    height: 39px;
    padding: 5px;
}

#publicForm textarea{
  height: 150px;
}


#publicForm input[type="file"]{
  float: left;
  padding: 0;
}

#extraArea input[name="del"]{
  width: 50px;
}

.album textarea {
    min-width: 200px;
}

.ups-btn {
    position: relative;
    text-align: center;
    line-height: 100px;
    cursor: pointer;
    height: 100%;
}
.album {
    display: block;
}

.album-img {
    background: #eee;
    justify-content: center;
    display: block;
    flex-direction: column;
    height: 300px;
    margin: auto;
}

.album-img-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 300px;
    background: #555;
    background-repeat: no-repeat;
    background-size: cover;
}

.album{padding: 20px 0 0 0;}
  .album-img{height: 280px;width: 280px;}
  .album-img .album-img-cover{height: 200px;}
  .form-line{min-height: 30px;}
  .radio-group{padding:0;height: 39px;line-height: 39px;width: 200px;text-align: left;}
  .choice .radio{/* margin:0; */line-height: 28px;/* text-align: left; */display: inline-block;}
  .user-id .label{width: 70px;}
  .album textarea{min-width:180px;}
  .form-line{margin: 5px auto;font-size: 14px;justify-content: center;}
  .w6{width: 80%;margin: auto;}
  .ness{margin-left: -33px;width: 20px;height: 27px;}
  .album-form{/* margin-top:20px; *//* margin-bottom:30px; *//* align-items: center; *//* margin: auto; */width: 100%;}
  .album-img{margin-bottom:50px;}


#nessAlbumIns,#nessAlbum{
  margin-left: -30px;
}  
#myBtn {
  bottom: 97px;
  right: 15px;
  width: 55px;
  padding: 8px 10px;
  font-size: 8px;
}

}