body {
  background: #F9F9F9;
  position: relative;
}

.nav .main {
  width: 14rem;
  margin: 0 auto;
}



.zixun {
  margin-bottom: 1rem;
}

.user_classname {
  width: 100%;
  font-weight: 600;
  font-size: 0.38rem;
  color: #000000;
  text-align: center;
  margin-top: 0.69rem;
  margin-bottom: 0.4rem;
}

.user_content {
  width: 14rem;
  height: 7.46rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  padding: 0.4rem 0.5rem;
  box-sizing: border-box;
}


.user_content .user_list {
  width: 6rem;
  height: auto;
  margin-bottom: 0.15rem;
  float: left;
  margin-right: 1rem;
}

.user_content .user_list:nth-child(2n+1) {
  margin-right: 0;
}

.user_content .user_title {
  width: 100%;
  font-weight: 400;
  font-size: 0.20rem;
  color: #000000;
  line-height: 0.5rem;
}

.user_content .user_title b {
  color: #FF0000;
  padding-right: 0.04rem;
}

.user_content .user_input {
}

.user_content .user_input input {
  width: 100%;
  height: 0.5rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #707070;
  display: block;
  padding-left: 0.16rem;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 0.04rem;
  border: 0.01rem solid #D4D4D4;
}

.user_content .user_input input::placeholder {
  color: #9A9A9A;
}







.user_text {
  width: 100%;
  float: left;
}

.user_text textarea {
  width: 100%;
  height: 2rem;
  background: rgba(255, 255, 255, 0.46);
  border: 0.01rem solid #E5E5E5;
  padding: 0.15rem 0.12rem;
  box-sizing: border-box;
}

.user_text textarea::placeholder,
.user_content .user_input input::placeholder {
  color: #9A9A9A;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
}

.submit {
  width: 1.6rem;
  height: 0.5rem;
  background: #4243D1;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  line-height: 0.5rem;
  text-align: center;
  display: block;
  margin: 0.14rem auto 0.4rem;
}









/* 单选按钮 */
.radio {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.2rem;
  color: #666666;
}
.radio-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 0.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 0.76rem;
}
.radio-container:last-child{
  margin-right: 0;
}
/* Hide the browser default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 0.02rem;
  border: 0.01rem solid #666666;
  margin-right: 0.11rem;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 0.075rem;
  left: 0.025rem;
  width: 0.11rem;
  height: 0.11rem;
  background: #4243D1;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
}
@media screen and (max-width: 1024px){
    .nav{
        width: 100%;
    }
    .nav .main{
        width: 95%;
        margin: 0 auto;
    }
    .user_classname{
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    .user_content{
        width: 100%;
        height: 9.8rem;
    } 
    .user_content .user_title{
        font-size: 0.28rem;
    }
    .none{
        display: none;
    }
    .user_content .user_input input{
        font-size: 0.22rem!important;
    }
    .user_content .user_input input:placeholder{
        font-size: 0.24rem!important;
    }
    .radio-container .checkmark:after{
        left: 0.035rem;
    }
    
}




















