body {
  max-width: 100%;
  overflow-x: hidden;
  background: #fff3df;
  font: 18px/36px "MicroSoft YaHei", "FZLanTingHeiS-DB-GB", "Hiragino Sans GB", Arial, sans-serif;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
ul,
dl,
dt,
dd,
a,
i,
b,
em,
strong,
img,
input {
  margin: 0;
  padding: 0;
}
b,
strong,
i,
em {
  font-weight: normal;
}
body,
html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1200px;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: none;
}
ul,
ol,
li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
}
input,
:focus {
  outline: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
select {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
input::focus-inner {
  padding: 0;
  border: 0;
}
input::-webkit-input-placeholder {
  color: #999;
}
input::-moz-placeholder {
  color: #999;
}
input:-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder {
  color: #999;
}
select::-ms-expand {
  display: none;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
img {
  vertical-align: top;
  border: none;
  max-width: 100%;
}
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
}
:-ms-input-placeholder {
  color: #999;
}
::selection {
  background: #D03333;
  color: white;
  text-shadow: none;
}
::-webkit-scrollbar-track-piece {
  width: 6px;
  background-color: #f2f2f2;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: #707070;
}
textarea,
select {
  outline: none;
  resize: none;
  -webkit-appearance: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
/*通用*/
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix {
  zoom: 1;
}
.clearfix::after {
  display: block;
  content: '';
  height: 0;
  font-size: 0;
  clear: both;
}
.box_container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.box_container.box_container_c {
  background-color: #fff;
  box-shadow: 0 6px 10px rgba(207, 150, 61, 0.22);
  box-sizing: border-box;
  border-radius: 30px;
}
.box_container.box_container_t {
  margin-top: -190px;
}
.btn_css {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
}
.btn_css:hover {
  opacity: 0.9;
}
.title_h3 {
  text-align: center;
  margin: 55px auto 35px;
}
.title_h3 span {
  font-size: 42px;
  line-height: 42px;
  color: #333;
  position: relative;
}
.title_h3 span::after,
.title_h3 span::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 39px;
  height: 24px;
}
.title_h3 span::after {
  left: -70px;
  background-image: url(../images/t_l.png);
  animation: ani_l 1s infinite linear;
}
.title_h3 span::before {
  right: -70px;
  background-image: url(../images/t_r.png);
  animation: ani_r 1s infinite linear;
}
@keyframes ani_l {
  0% {
    background-image: url(../images/t_l.png);
  }
  50% {
    background-image: url(../images/t_r.png);
  }
  100% {
    background-image: url(../images/t_l.png);
  }
}
@keyframes ani_r {
  0% {
    background-image: url(../images/t_r.png);
  }
  50% {
    background-image: url(../images/t_l.png);
  }
  100% {
    background-image: url(../images/t_r.png);
  }
}
.box_table {
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 25px;
  border-radius: 22px;
}
.box_table table {
  width: 100%;
  box-sizing: border-box;
}
.box_table thead tr td {
  background-color: #ffd7ad;
  font-size: 24px;
  color: #333;
  text-align: center !important;
  height: 54px;
  padding: 0;
  white-space: nowrap;
  font-weight: bold;
  min-width: 5%;
  border: none;
}
.box_table thead tr td:first-child {
  border-top-left-radius: 22px;
}
.box_table thead tr td:last-child {
  border-top-right-radius: 22px;
}
.box_table td {
  border: 1px solid #ffd7ad;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  padding: 10px 5px;
  line-height: 32px;
  background-color: #fff;
}
.box_table td.b_l {
  border-bottom-left-radius: 22px;
}
.box_table td.b_r {
  border-bottom-right-radius: 22px;
}
.box_table td img {
  width: 170px;
  height: 170px;
  background-color: #ffd191;
  display: block;
  margin: 0 auto 20px;
}
.box_table td a {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  margin: 0 auto;
}
.box_table td a:hover {
  opacity: 0.9;
}
.banner {
  position: relative;
  height: 600px;
  background: url(../images/banner.jpg) no-repeat top center;
  box-sizing: border-box;
  padding-top: 52px;
}
.banner h1 {
  width: 634px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(#fff5ea, #ffcf8a);
  box-shadow: inset 0 3px 3px rgba(255, 88, 0, 0.6), 0 8px 0px #ed3d00;
  font-size: 34px;
  line-height: 60px;
  color: #ff2e14;
  text-align: center;
  margin: 0 auto 20px;
  letter-spacing: 2px;
}
.banner img {
  display: block;
  margin: 0 auto;
}
.box_dy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 310px;
  box-sizing: border-box;
  padding: 0 40px;
}
.box_dy .l {
  background: url(../images/dy_bg.png) no-repeat center;
  width: 564px;
  height: 225px;
  position: relative;
}
.box_dy .l i {
  position: absolute;
  left: 0;
  top: 14px;
  width: 160px;
  height: 34px;
  border-radius: 0 18px 18px 0;
  background-color: #ff3615;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 34px;
  font-style: normal;
}
.box_dy .l img {
  position: absolute;
  left: 42px;
  top: 70px;
}
.box_dy .l div {
  text-align: center;
  box-sizing: border-box;
  padding-left: 190px;
  padding-top: 38px;
}
.box_dy .l div p {
  font-size: 22px;
  line-height: 22px;
  color: #494b46;
}
.box_dy .l div h3 {
  color: transparent;
  background-image: -webkit-linear-gradient(#fe7004, #ed1500);
  -webkit-background-clip: text;
  font-size: 42px;
  line-height: 48px;
  font-weight: bold;
  margin: 20px 0;
}
.box_dy .l div a {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  margin: 0 auto;
}
.box_dy .l div a:hover {
  opacity: 0.9;
}
.box_dy .m {
  display: flex;
  height: 225px;
  align-content: space-between;
  flex-wrap: wrap;
  width: 340px;
}
.box_dy .m li {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  color: #fff;
  background-color: #ff9d41;
  font-size: 20px;
  line-height: 46px;
  text-align: center;
}
.box_dy .r {
  display: flex;
  width: 150px;
  height: 225px;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 10px;
}
.box_dy .r img {
  width: 150px;
  height: 150px;
}
.box_dy .r a {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  width: 150px;
}
.box_dy .r a:hover {
  opacity: 0.9;
}
.box_two_div {
  position: relative;
  padding: 0 50px;
  box-sizing: border-box;
}
.box_two_div .swiper-slide {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  padding: 15px 12px 0;
  height: auto;
  border-radius: 22px;
  padding-bottom: 30px;
}
.box_two_div .swiper-slide img {
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.box_two_div .swiper-slide p {
  font-size: 22px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
}
.box_two_div .swiper-slide p.p_2 {
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
  margin: 10px 0 20px;
}
.box_two_div .swiper-slide > div,
.box_two_div .swiper-slide section > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
}
.box_two_div .swiper-slide > div div,
.box_two_div .swiper-slide section > div div {
  font-size: 28px;
  line-height: 50px;
  color: #ff3141;
  margin: 0;
}
.box_two_div .swiper-slide > div div strong,
.box_two_div .swiper-slide section > div div strong {
  font-size: 46px;
  line-height: 50px;
  color: #ff3141;
}
.box_two_div .swiper-slide > div div strong b,
.box_two_div .swiper-slide section > div div strong b {
  font-size: 28px;
}
.box_two_div .swiper-slide a {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  width: 140px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}
.box_two_div .swiper-slide a:hover {
  opacity: 0.9;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  width: 30px;
  height: 103px;
  background-image: url('../images/l_l.png');
  background-size: contain;
  left: 5px;
  top: 145px;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  width: 30px;
  height: 103px;
  background-image: url('../images/l_r.png');
  background-size: contain;
  right: 5px;
  top: 145px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
}
.box_fp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 30px;
}
.box_fp .l,
.box_fp .r {
  background: linear-gradient(#ffe6c9, #ffd090);
  box-sizing: border-box;
  height: 248px;
  border: 1px solid #ffd9b0;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.box_fp .l {
  width: 615px;
  padding: 20px 0;
}
.box_fp .l p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.box_fp .l p b {
  width: 50px;
  color: #333;
  font-size: 22px;
  line-height: 52px;
}
.box_fp .l p strong {
  width: 500px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  font-size: 20px;
  line-height: 52px;
  box-sizing: border-box;
  padding-left: 20px;
  color: #333;
}
.box_fp .r {
  width: 495px;
  justify-content: space-between;
  padding: 0 20px 0px;
}
.box_fp .r .r_l i {
  display: block;
  width: 150px;
  height: 34px;
  border-radius: 0 17px 17px 0;
  background-color: #ff3615;
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-style: normal;
  margin-bottom: 15px;
}
.box_fp .r .r_l h6 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #333;
}
.box_fp .r .r_l p {
  font-size: 20px;
  line-height: 20px;
  color: #333;
  margin: 15px 0 20px;
}
.box_fp .r .r_l b {
  display: block;
  width: 200px;
  height: 30px;
  background-color: #ffeed9;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #333;
}
.box_fp .r .r_r img {
  width: 144px;
  height: 144px;
  display: block;
  margin: 0 auto 10px;
}
.box_fp .r .r_r span {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  width: 150px;
  height: 44px;
  font-size: 20px;
  line-height: 44px;
}
.box_fp .r .r_r span:hover {
  opacity: 0.9;
}
.code_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 50px 30px;
  margin-bottom: 120px;
}
.code_ul li {
  width: 365px;
  height: 445px;
  background: linear-gradient(#ffe6c9, #ffd090);
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
  padding-top: 28px;
}
.code_ul li h3 {
  font-size: 20px;
  color: #803a10;
  line-height: 20px;
  font-weight: normal;
}
.code_ul li h4 {
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  color: #803a10;
  margin: 15px 0 20px;
}
.code_ul li img {
  display: block;
  margin: 0 auto 25px;
  width: 210px;
  height: 210px;
}
.code_ul li span {
  width: 174px;
  height: 46px;
  border-radius: 23px;
  font-size: 24px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(#ffa127, #ff3014);
  display: block;
  color: #fff;
  transition: 0.2s;
  width: 280px;
  height: 50px;
  font-size: 22px;
  line-height: 50px;
  border-radius: 25px;
  margin: 0 auto;
}
.code_ul li span:hover {
  opacity: 0.9;
}
.code_ul li span.w_1 {
  width: 250px;
}
@media only all and (max-width: 1080px) {
  body {
    max-width: 100%;
    overflow-x: hidden;
    background-size: cover;
    font: 0.18rem/0.36rem "Hiragino Sans GB", "MicroSoft YaHei", Arial, sans-serif;
  }
  body,
  html {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .fixed_l {
    display: none !important;
  }
  .box_container {
    width: 96%;
    margin: 0 auto ;
    position: relative;
  }
  .box_container.box_container_c {
    box-shadow: 0 0.16rem 0.26rem rgba(207, 150, 61, 0.22);
    box-sizing: border-box;
    border-radius: 0.75rem;
  }
  .box_container.box_container_t {
    margin-top: -1.5rem;
  }
  .btn_css {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
  }
  .btn_css:hover {
    opacity: 1;
  }
  .title_h3 {
    text-align: center;
    margin: 1.2rem auto 0.8rem;
  }
  .title_h3 span {
    font-size: 1.05rem;
    line-height: 1.05rem;
  }
  .title_h3 span::after,
  .title_h3 span::before {
    width: 0.975rem;
    height: 0.6rem;
  }
  .title_h3 span::after {
    left: -1.75rem;
  }
  .title_h3 span::before {
    right: -1.75rem;
  }
  .box_table {
    padding: 0.5rem;
    border-radius: 0.55rem;
  }
  .box_table thead tr td {
    font-size: 0.55rem;
    height: 1.35rem;
  }
  .box_table thead tr td:first-child {
    border-top-left-radius: 0.55rem;
  }
  .box_table thead tr td:last-child {
    border-top-right-radius: 0.55rem;
  }
  .box_table .b_b td:first-child {
    border-bottom-left-radius: 0.55rem;
  }
  .box_table td {
    font-size: 0.6rem;
    padding: 0.25rem 0.125rem;
    line-height: 0.8rem;
  }
  .box_table td.b_r {
    border-bottom-right-radius: 0.55rem;
  }
  .box_table td img {
    width: 3.5rem;
    height: auto;
    border-radius: 0.25rem;
    margin: 0 auto 0.3rem;
  }
  .box_table td a {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
    width: 3rem;
  }
  .box_table td a:hover {
    opacity: 1;
  }
  .banner {
    height: 11rem;
    padding-top: 1.5rem;
    background-position: bottom center;
    background-size: cover;
  }
  .banner h1 {
    width: 15.85rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: inset 0 0.075rem 0.075rem rgba(255, 88, 0, 0.6), 0 0.2rem 0px #ed3d00;
    font-size: 0.85rem;
    line-height: 1.5rem;
    margin: 0 auto 0.5rem;
    letter-spacing: 0.05rem;
  }
  .banner img {
    width: 90%;
  }
  .box_dy {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem;
  }
  .box_dy .l {
    background-size: cover;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .box_dy .l i {
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 4rem;
    height: 0.85rem;
    border-radius: 0 0.45rem 0.45rem 0;
    font-size: 0.5rem;
    line-height: 0.85rem;
  }
  .box_dy .l img {
    width: 2.9rem;
    height: 3.2rem;
    left: 1.05rem;
    top: 1.75rem;
  }
  .box_dy .l div {
    text-align: center;
    box-sizing: border-box;
    padding-left: 4rem;
    padding-top: 0.95rem;
  }
  .box_dy .l div p {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
  .box_dy .l div h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin: 0.5rem 0;
  }
  .box_dy .l div a {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
    margin: 0 auto;
    width: 7rem;
    height: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    border-radius: 1rem;
  }
  .box_dy .l div a:hover {
    opacity: 1;
  }
  .box_dy .m {
    height: auto;
    width: 100%;
  }
  .box_dy .m li {
    width: 100%;
    height: 1.6rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    line-height: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .box_dy .r {
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding-top: 0.25rem;
  }
  .box_dy .r img {
    width: 150px;
    height: 150px;
  }
  .box_dy .r a {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
    width: 7.5rem;
    height: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    border-radius: 1rem;
    margin: 0.5rem 20%;
  }
  .box_dy .r a:hover {
    opacity: 1;
  }
  .box_two_div {
    padding: 0 0.5rem 0.75rem;
  }
  .box_two_div .swiper-slide {
    padding: 0.375rem 0.3rem 0;
    border-radius: 0.55rem;
    padding-bottom: 0.3rem;
  }
  .box_two_div .swiper-slide img {
    height: 5rem;
    border-radius: 0.3rem;
    margin-bottom: 0.5rem;
  }
  .box_two_div .swiper-slide p {
    font-size: 0.55rem;
    line-height: 0.55rem;
  }
  .box_two_div .swiper-slide p.p_2 {
    font-size: 0.65rem;
    line-height: 0.65rem;
    margin: 0.25rem 0 0.5rem;
  }
  .box_two_div .swiper-slide > div,
  .box_two_div .swiper-slide section > div {
    padding: 0 0.5rem;
  }
  .box_two_div .swiper-slide > div div,
  .box_two_div .swiper-slide section > div div {
    font-size: 0.7rem;
    line-height: 1.25rem;
  }
  .box_two_div .swiper-slide > div div strong,
  .box_two_div .swiper-slide section > div div strong {
    font-size: 1.15rem;
    line-height: 1.25rem;
  }
  .box_two_div .swiper-slide > div div strong b,
  .box_two_div .swiper-slide section > div div strong b {
    font-size: 0.7rem;
  }
  .box_two_div .swiper-slide a {
    width: 3.5rem;
    height: 1rem;
    border-radius: 0.5rem;
    font-size: 0.5rem;
    line-height: 1rem;
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    width: 0.75rem;
    height: 2.575rem;
    left: 0.125rem;
    top: 45%;
  }
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    width: 0.75rem;
    height: 2.575rem;
    right: 0.125rem;
    top: 45%;
  }
  .box_fp {
    padding: 0.5rem;
  }
  .box_fp .l,
  .box_fp .r {
    height: auto;
    border-radius: 0.5rem;
  }
  .box_fp .l {
    width: 100%;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
  }
  .box_fp .l p {
    padding: 0 0.75rem 0 0.5rem;
    margin-bottom: 0.5rem;
  }
  .box_fp .l p:last-child {
    margin-bottom: 0;
  }
  .box_fp .l p b {
    width: auto;
    font-size: 0.7rem;
    line-height: 1.3rem;
  }
  .box_fp .l p strong {
    width: 13.5rem;
    border-radius: 0.3rem;
    font-size: 0.6rem;
    line-height: 1.3rem;
    padding-left: 0.5rem;
  }
  .box_fp .r {
    width: 100%;
    padding: 0.5rem 0 0 0.5rem;
  }
  .box_fp .r .r_l i {
    width: 5rem;
    height: 1.2rem;
    border-radius: 0 0.85rem 0.85rem 0;
    font-size: 0.7rem;
    line-height: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .box_fp .r .r_l h6 {
    font-size: 1rem;
    line-height: 1rem;
  }
  .box_fp .r .r_l p {
    font-size: 0.8rem;
    line-height: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .box_fp .r .r_l b {
    width: 8rem;
    height: 1.2rem;
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  .box_fp .r .r_r {
    margin: 0.2rem auto 0.5rem;
  }
  .box_fp .r .r_r img {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 0.5rem;
  }
  .box_fp .r .r_r span {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
    width: 6rem;
    height: 1.6rem;
    font-size: 0.8rem;
    line-height: 1.6rem;
    border-radius: 0.8rem;
  }
  .box_fp .r .r_r span:hover {
    opacity: 1;
  }
  .code_ul {
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
  .code_ul li {
    width: 49%;
    height: auto;
    border-radius: 0.5rem;
    padding-top: 0.8rem;
    margin-bottom: 0.3rem;
    padding-bottom: 0.8rem;
  }
  .code_ul li h3 {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
  .code_ul li h4 {
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 0.2rem 0;
  }
  .code_ul li img {
    margin: 0 auto 0.3rem;
    width: 5rem;
    height: 5rem;
  }
  .code_ul li span {
    width: 4.35rem;
    height: 1.15rem;
    border-radius: 0.575rem;
    font-size: 0.6rem;
    line-height: 1.15rem;
    width: 90%;
    height: 1.6rem;
    font-size: 0.7rem;
    line-height: 1.6rem;
    border-radius: 0.8rem;
    margin: 0 auto;
  }
  .code_ul li span:hover {
    opacity: 1;
  }
  .code_ul li span.w_1 {
    width: 90%;
  }
}
