@charset "utf-8";


@font-face {
  font-family: sys-sb;
  src: url(./fonts/SOURCEHANSERIFCN-SEMIBOLD.OTF);
  font-weight: normal;
  font-style: normal;
}

.head {
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  top: 0.42rem;
  transform: translateX(-50%);
}

.logo a {
  display: block;
}

.logo a img {
  display: block;
  margin: 0 auto;
  height: 0.68rem;
}

.banner>img {
  display: block;
  width: 100%;
}

.index {
  background: #FCEFE3;
  position: relative;
  z-index: 9;
  padding-bottom: .87rem;
}

.s1 {
  padding-top: .72rem;
  position: relative;
  z-index: 9;
}

.s1::before {
  content: "";
  position: absolute;
  right: 1.66rem;
  top: -2rem;
  background: url(../images/s1-sxbg.png) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 3.54rem;
  height: 3.01rem;
  z-index: 2;
}

.s1-c {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  box-sizing: border-box;
  border: 2px dashed #FA803E;
  padding: 0.06rem;
}

.s1-c::before {
  content: "";
  position: absolute;
  left: -.65rem;
  bottom: -.35rem;
  background: url(../images/s1-lbtm.png) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 1.31rem;
  height: 1.36rem;
  z-index: 2;
}

.s1-c::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/s1-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.s1-c div {
  border-radius: 0.15rem;
  box-sizing: border-box;
  border: 1px solid #FA803E;
  padding: .39rem .28rem;
}

.s1-c div p {
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 0.5rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #7E0305;
  text-indent: 2em;
  font-family: sys-sb;
}

.s2 {
  padding-top: .08rem;
}

form {
  display: block;
}

.ipt-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ipt-group>.ipt-item {
  width: 48%;
}

.ipt-item {
  margin-top: .58rem;
}

.ipt-item>p {
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 0.44rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #333333;
  font-family: sys-sb;
}

.ipt-item>div {
  margin-top: .26rem;
  border: 1px solid #DB5C31;
  position: relative;
  padding-left: .7rem;
  padding-right: .2rem;
  background: rgba(255, 250, 250, 0.58);
  transition: all .5s;
}

.ipt-item>div img {
  position: absolute;
  left: .35rem;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-height: .49rem;
}

.ipt-item>div input {
  display: block;
  background: none;
  width: 100%;
  height: 0.76rem;
  line-height: .76rem;
  font-size: .18rem;
  color: #333;
}

.ipt-item>ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: .2rem;
}

.ipt-item>ul li {
  width: 33.33%;
}

.ipt-item>ul li label {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.44rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #494949;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ipt-item>ul li label input {
  margin-right: .15rem;

}


/* 1. 隐藏原生单选框（保留功能，仅隐藏视觉样式） */
.ipt-item>ul li label input[type="radio"] {
  /* 隐藏原生样式，但仍可被点击/选中 */
  appearance: none;
  -webkit-appearance: none;
  /* 兼容 Safari/Chrome */
  -moz-appearance: none;
  /* 兼容 Firefox */
  width: 0.19rem;
  height: 0.19rem;
  vertical-align: middle;
  position: relative;
  border: 1px solid #DB5C31;
  /* 未选中时的边框颜色 */
  background-color: rgba(255, 250, 250, 0.58);
  border-radius: 50%;
  /* 圆形（单选框特征） */
  cursor: pointer;
}

/* 2. 自定义选中后的样式（边框+内部圆点颜色） */
.ipt-item>ul li label input[type="radio"]:checked {
  border-color: #DB5C31;
  /* 选中后的边框颜色（主题红，可修改） */
  background-color: transparent;
  /* 选中后的背景色（保证内部圆点对比明显） */
}

.ipt-item>ul li label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  /* 内部圆点大小 */
  height: 8px;
  border-radius: 50%;
  background-color: #DB5C31;
  /* 选中后的圆点颜色（核心：修改这里改变选中颜色） */
}

.ipt-item>dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.37rem;
}

.ipt-item>dl dd {
  width: 20%;
  margin-top: .32rem;
}

.ipt-item>dl dd a {
  background: rgba(255, 250, 250, 0.58);
  box-sizing: border-box;
  border: 1px solid #DB5C31;
  margin: 0 .37rem;
  height: 1.4rem;
  padding: .1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all .5s;
}

.ipt-item>dl dd .icons {
  height: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ipt-item>dl dd .icons img {
  max-height: 100%;
  transition: all .5s;
}

.ipt-item>dl dd .icons img:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.ipt-item>dl dd p {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.3rem;
  letter-spacing: normal;
  color: #494949;
  text-align: center;
  margin-top: 0.04rem;
  transition: all .5s;
}
 
  .ipt-item>dl dd.on a {
    background: #DB5C31;
  }

  .ipt-item>dl dd.on a .icons img {
    opacity: 0;
  }

  .ipt-item>dl dd.on a .icons img:nth-child(2) {
    opacity: 1;
  }

  .ipt-item>dl dd.on a p {
    color: #fff;
  }
.ipt-item>div>textarea {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: .25rem 0;
  font-size: .18rem;
  line-height: .3rem;
  color: #333;
  resize: none;
}

.ipt-item>div.textwrite img {
  top: .2rem;
  transform: translateX(-50%);
}

.ipt-btn {
  display: flex;
  justify-content: center;
  margin-top: .57rem;
}

.ipt-btn div input {
  width: 2.62rem;
  height: 0.64rem;
  display: block;
  background: #DB5C31;
  box-sizing: border-box;
  border: none;
  font-size: 0.26rem;
  font-weight: bold;
  line-height: .64rem;
  letter-spacing: normal;
  color: #FFFFFF;
  font-family: sys-sb;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .ipt-item>div:hover{
    box-shadow: 0 0 .2rem rgba(219, 92, 49,.5);
  }
  .ipt-item>dl dd a:hover {
    background: #DB5C31;
  }

  .ipt-item>dl dd a:hover .icons img {
    opacity: 0;
  }

  .ipt-item>dl dd a:hover .icons img:nth-child(2) {
    opacity: 1;
  }

  .ipt-item>dl dd a:hover p {
    color: #fff;
  }
}



@media screen and (max-width: 1024px){
  .logo{top: .1rem;}
  .logo a img{height: .34rem;}
  .s1::before{width: 1.18rem;height: 1rem;right: 0;top: -.3rem;}
  .s1-c div p{font-size: .18rem;line-height: .36rem;}
  .s1-c div{padding:.2rem .2rem .3rem .2rem;}
  .s1-c::before{width: 0.86rem;height: 0.9rem;left: -.4rem;bottom: -.3rem;}
  .ipt-item>p{font-size: .18rem;line-height: .3rem;}
  .ipt-item>div{margin-top: .15rem;}
  .ipt-item>div input{height: 0.5rem;line-height: .5rem;}
  .ipt-item>div img{max-height: .3rem;left: .25rem;}
  .ipt-item>ul li label{font-size: .16rem;line-height: .3rem;}
  .ipt-group{display: block;}
  .ipt-group>.ipt-item{width: auto;}
  .ipt-item{margin-top: .25rem;}
  .ipt-item>ul li label input{margin-right: .05rem;}
  .ipt-item>ul li label input[type="radio"]{width: .13rem;height: 0.13rem;}
  .ipt-item>dl dd .icons{height: .4rem;}
  .ipt-item>dl{margin: 0 -.05rem;}
  .ipt-item>dl dd a{margin: 0 .05rem;}
  .ipt-item>dl dd p{font-size: .16rem;}
  .ipt-item>dl dd{margin-top: .2rem;}
  .ipt-btn div input{width: 1.74rem;height: 0.48rem;line-height: .48rem;font-size: .2rem;}
  .ipt-btn{margin-top: .3rem;}
  .index{padding-bottom: .35rem;}
  .s1{padding-top: .5rem;}
}

@media screen and (max-width: 768px){
  .ipt-item>dl dd{width: 50%;}
}
#saveform table{margin-top: 30px;}
#saveform table img{ width: 100px !important; height: 30px !important; vertical-align: bottom;}