@keyframes rotateAll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleUpDown {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 6.25rem;
  height: 6.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header > div {
  line-height: inherit;
  overflow: visible !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 46%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 1.25rem;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a img {
  height: 3.5625rem;
}
header > div .logo .logo_text a h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1875rem;
}
header > div .logo .logo_text a p {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 54%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 5rem);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  position: relative;
  width: 15%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li::after {
  display: block;
  content: "";
  width: 0%;
  height: 4px;
  background-color: #4c1d08;
  position: absolute;
  left: 0;
  bottom: 0;
}
header > div nav ul li:hover {
  background-color: #fdefe8;
}
header > div nav ul li:hover::after {
  width: 100%;
  transition: all 0.5s ease;
}
header > div nav ul li:hover a {
  font-weight: 600;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 1.125rem;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 6.25rem;
  left: 0;
  background-color: #fdefe8;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #ec621f;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 1.875rem;
  padding-left: 1.25rem;
}
header > div nav .tool > div a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > div a i {
  color: #fff;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background-color: #ec621f;
  line-height: 1.875rem;
  text-align: center;
  font-size: 1rem;
}
header > div nav .tool > div a h3 {
  margin-left: 0.625rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 0.875rem;
  font-weight: 400;
  text-align: center;
}
header > div nav .tool > p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.875rem;
  font-weight: 700;
  text-align: left;
}
header.active {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header.active > div .logo .logo_text a h3 {
  color: #000;
}
header.active > div .logo .logo_text a p {
  color: #999;
}
header.active > div nav ul li a {
  color: #000;
}
@media screen and (max-width: 1440px) {
  header {
    height: 5.5rem;
    line-height: 5.5rem;
  }
  header > div nav ul li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
.more {
  background-color: #ec621f;
  width: 13rem;
  border-radius: 8rem;
  margin-right: 2rem;
}
.more a {
  position: relative;
  display: block;
}
.more a > div {
  position: relative;
  background: none;
  border: 2px solid #ec621f;
  box-sizing: border-box;
  border-radius: 8rem;
  overflow: hidden;
}
.more a > div span {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  line-height: 3.5rem;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.more a i {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  right: -2rem;
  top: 0;
  z-index: 4;
  border-radius: 50%;
  background-color: #4c1d08;
  text-align: center;
  line-height: 3.5rem;
  color: #fff;
  font-size: 1.125rem;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.more.b {
  background: none;
}
.more.b a > div span {
  display: block;
  color: #000;
}
.more.b a > div::after {
  display: block;
  content: "";
  width: 0%;
  height: 4rem;
  background-color: #ec621f;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
.more.h {
  background: none;
  border: 2px solid #4c1d08;
  box-sizing: border-box;
}
.more.h a > div span {
  color: #4c1d08;
}
.more.h a > div::after {
  display: block;
  content: "";
  width: 0%;
  height: 4rem;
  background-color: #ec621f;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
.more.h a i {
  background-image: linear-gradient(45deg, #215ca7, #ffc540);
}
.more:hover a i {
  transform: rotate(90deg);
}
.more:hover a > div span {
  color: #fff;
}
.more:hover a > div::after {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .more {
    width: 11rem;
  }
  .more a i {
    line-height: 3rem;
    right: -1.75rem;
    width: 3rem;
    height: 3rem;
  }
  .more a > div span {
    line-height: 3rem;
  }
}
.title .t1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.title .t1 h3 {
  font-size: 2rem;
  color: #ec621f;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  text-transform: uppercase;
}
.title .t1 span {
  margin-left: 0.625rem;
  width: 4.125rem;
  height: 1px;
  background-color: #ec621f;
}
.title .t2 {
  margin-top: 0.75rem;
}
.title .t2 h2 {
  font-size: 3rem;
  color: #000000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
}
.title.h .t1 h3 {
  color: #4c1d08;
  opacity: 0.4;
}
.title.h .t1 span {
  background-color: #fff;
}
.title.h .t2 h2 {
  color: #4c1d08;
}
.title.b .t1 h3 {
  color: #fff;
  opacity: 0.4;
}
.title.b .t1 span {
  background-color: #fff;
}
.title.b .t2 h2 {
  color: #fff;
}
.title.c .t1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.title.c .t1 h3 {
  text-align: center;
}
.title.c .t2 h2 {
  text-align: center;
}
.title.s .t1 h3 {
  font-size: 1.5rem;
}
.title.s .t1 span {
  width: 3rem;
}
.title.s .t2 h2 {
  font-size: 3rem;
}
@media screen and (max-width: 1440px) {
  .title .t2 h2 {
    font-size: 2.25rem;
  }
  .title .t1 h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .title .t2 {
    margin-top: 0.5rem;
  }
  .title .t2 h2 {
    font-size: 1.5rem;
  }
  .title .t1 h3 {
    font-size: 1rem;
  }
}
footer {
  width: 100%;
  overflow: hidden;
  background: #4c1d08;
  padding-bottom: 3.125rem;
}
footer .w80 .top {
  margin-top: 8.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .left .title h2 {
  margin-top: 0px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .top .left .title h2 img {
  width: 5.5rem;
  margin-right: 1rem;
}
footer .w80 .top .left .title h2 span {
  color: #fff;
  font-size: 3.625rem;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  letter-spacing: 4px;
}
footer .w80 .top .left .title h4 {
  font-size: 1.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3rem;
  opacity: 0.6;
}
footer .w80 .top .left .share {
  opacity: 0.6;
}
footer .w80 .top .left .share .s_box1 {
  margin-bottom: 2.75rem;
}
footer .w80 .top .left .share .s_box1 h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.875rem;
}
footer .w80 .top .left .share .s_box1 h5 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .w80 .top .left .share .s_box2 a img {
  width: initial;
}
footer .w80 .top .left .share .s_box2 a:nth-of-type(2) {
  margin: 0 2.5rem;
}
footer .w80 .top .center {
  opacity: 0.6;
}
footer .w80 .top .center a {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: block;
}
footer .w80 .top .center span {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
footer .w80 .top .right {
  width: 24%;
}
footer .w80 .top .right h4 {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 0.5rem;
}
footer .w80 .top .right h3 {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 3rem;
  letter-spacing: 4px;
}
footer .w80 .top .right .r1 p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2rem;
  opacity: 0.6;
}
footer .w80 .top .right .r2 {
  margin-top: 2.5rem;
}
footer .w80 .top .right .r2 p {
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  margin-bottom: 0.875rem;
  opacity: 0.4;
}
footer .w80 .bottom {
  margin-top: 8.75rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .bottom a {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin: 0 0.75rem;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  footer .w80 .top {
    margin-top: 6.875rem;
  }
  footer .w80 .top .left .title h2 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
  }
  footer .w80 .top .left .title h4 {
    font-size: 1.125rem;
  }
  footer .w80 .top .left .share .s_box1 h3 {
    font-size: 1.5rem;
  }
  footer .w80 .top .left .share .s_box1 h5 {
    font-size: 1.125rem;
  }
  footer .w80 .top .left .share .s_box1 {
    margin-bottom: 2.25rem;
  }
  footer .w80 .top .center span {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  footer .w80 .top .center a {
    font-size: 1.125rem;
    text-align: center;
  }
  footer .w80 .top .right h3 {
    font-size: 1.375rem;
  }
  footer .w80 .bottom {
    margin-top: 3.75rem;
  }
  footer .w80 .top .right {
    width: 28%;
  }
  footer .w80 .top .left .title h2 span {
    font-size: 2.5rem;
  }
  footer .w80 .top .left .title h2 img {
    width: 4.5rem;
  }
}
@media screen and (max-width: 992px) {
  footer .w80 .top .center {
    display: none;
  }
  footer .w80 .top .left {
    width: 100%;
  }
  footer .w80 .top .left .title h2 {
    font-size: 2rem;
  }
  footer .w80 .top .right {
    width: 100%;
    margin-top: 3.75rem;
  }
  footer .w80 .top .left .img img {
    width: 6.25rem;
    margin-bottom: 1.25rem;
  }
  footer .w80 .top .left .share .s_box1 h3 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
  footer .w80 .top .left .share .s_box1 h5 {
    font-size: 0.9375rem;
  }
  footer .w80 .top .left .share .s_box2 a:nth-of-type(2) {
    margin: 0 1.25rem;
  }
  footer .w80 .top .left .txt p {
    font-size: 1.25rem;
  }
  footer .w80 .top {
    margin-top: 5rem;
  }
  footer .w80 .top .right h3 {
    display: none;
  }
  footer .w80 .bottom {
    margin-top: 2.5rem;
  }
  footer .w80 .bottom a {
    margin-bottom: 0.625rem;
  }
  footer .w80 .bottom a:nth-of-type(2) {
    display: none;
  }
  footer {
    padding-bottom: 1.25rem;
  }
  footer .w80 .top .left .title h2 span {
    font-size: 1.75rem;
  }
  footer .w80 .top .left .title h2 img {
    width: 3.5rem;
  }
  footer .w80 .top .right h3 {
    display: block;
  }
  footer .w80 .top .right .r1 p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  footer .w80 .bottom a {
    margin: 0;
    font-size: 0.75rem;
  }
}
.index .part01 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: url(/images/indexPart01Bg.jpg) no-repeat top center / 100%;
  position: relative;
}
.index .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.index .part01 .w80 .top .left {
  width: 45%;
}
.index .part01 .w80 .top .left .l_desc {
  margin-top: 2rem;
}
.index .part01 .w80 .top .left .l_desc h4 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
.index .part01 .w80 .top .right {
  width: 45%;
}
.index .part01 .w80 .top .right .content {
  margin-bottom: 2rem;
}
.index .part01 .w80 .top .right .content p {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .center {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .center .item {
  width: 23.5%;
  height: 10.875rem;
  border-radius: 0.625rem;
  background-color: #fff;
  border: 1px solid #ec621f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .center .item .i_box .i_top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part01 .w80 .center .item .i_box .i_top h2 {
  font-size: 4.5rem;
  color: #ea5514;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part01 .w80 .center .item .i_box .i_top span {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-top: 10px;
  margin-left: 8px;
}
.index .part01 .w80 .center .item .i_box .i_bottom {
  margin-top: 1rem;
}
.index .part01 .w80 .center .item .i_box .i_bottom p {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.6;
}
.index .part02 {
  position: relative;
  width: 100%;
  height: 86vh;
}
.index .part02 .text {
  position: absolute;
  left: 0;
  top: 7.5rem;
  width: 100%;
  height: calc(86vh - 15rem);
  z-index: 3;
}
.index .part02 .text .w80 {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index .part02 .text .w80 .top .desc {
  width: 74%;
  margin-top: 1.5rem;
}
.index .part02 .text .w80 .top .desc p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
.index .part02 .text .w80 .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .text .w80 .bottom .item {
  width: 24%;
  height: 14rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  box-sizing: border-box;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(1) {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.5rem);
}
.index .part02 .text .w80 .bottom .item:nth-of-type(2) {
  background-color: rgba(236, 98, 31, 0.8);
  backdrop-filter: blur(0.5rem);
}
.index .part02 .text .w80 .bottom .item:nth-of-type(3) {
  background-color: rgba(76, 29, 8, 0.8);
  backdrop-filter: blur(0.5rem);
}
.index .part02 .text .w80 .bottom .item .t h3 {
  font-size: 1.5rem;
  color: #4c1d08;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.2rem;
  letter-spacing: 3px;
}
.index .part02 .text .w80 .bottom .item .t p {
  font-size: 0.75rem;
  color: #4c1d08;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.index .part02 .text .w80 .bottom .item .i {
  float: right;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(76, 29, 8, 0.4);
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .text .w80 .bottom .item .i img {
  width: 3rem;
  transition: all 0.5s ease;
}
.index .part02 .text .w80 .bottom .item::after {
  display: block;
  content: "Business";
  font-size: 5rem;
  line-height: 1;
  font-family: "MyFont";
  position: absolute;
  bottom: 1.125rem;
  left: 2rem;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.1;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(1)::after {
  background: linear-gradient(90deg, #4c1d08, rgba(76, 29, 8, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.1;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(2) .t h3 {
  color: #fff;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(2) .t p {
  color: #fff;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(2) .i {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.index .part02 .text .w80 .bottom .item:nth-of-type(3) .t h3 {
  color: #fff;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(3) .t p {
  color: #fff;
}
.index .part02 .text .w80 .bottom .item:nth-of-type(3) .i {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.index .part02 .text .w80 .bottom .item.active .i img {
  transform: rotateY(180deg);
}
.index .part02 .text .w80 .bottom .item.active:nth-of-type(1) {
  background-color: #ffffff;
}
.index .part02 .text .w80 .bottom .item.active:nth-of-type(2) {
  background-color: #ec621f;
}
.index .part02 .text .w80 .bottom .item.active:nth-of-type(3) {
  background-color: #4f1d08;
}
.index .part02 .bg {
  width: 100%;
  height: inherit;
  position: relative;
  overflow: hidden;
}
.index .part02 .bg .item {
  width: 100%;
  height: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 2s ease;
  opacity: 0;
}
.index .part02 .bg .item.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  opacity: 1;
}
.index .part02 .bg .item:nth-of-type(1) {
  background: url(/images/indexProImg1.jpg) no-repeat center / cover;
}
.index .part02 .bg .item:nth-of-type(2) {
  background: url(/images/indexProImg2.jpg) no-repeat center / cover;
}
.index .part02 .bg .item:nth-of-type(3) {
  background: url(/images/indexProImg3.jpg) no-repeat center / cover;
}
.index .part03 {
  padding-top: 12rem;
  background-image: url(/images/i_part01Bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 10.625rem;
}
.index .part03 .w80 .top {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .btns .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 14rem;
  height: 3.5rem;
  background-color: #4c1d08;
  margin-left: 0.5rem;
  border-radius: 0.25rem;
}
.index .part03 .w80 .top .btns .item span {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part03 .w80 .top .btns .item::before {
  display: block;
  content: "";
  width: 0.25rem;
  height: 1.25rem;
  margin-top: 2px;
  margin-right: 0.5rem;
  background-color: #ec621f;
}
.index .part03 .w80 .bottom {
  margin-top: 5rem;
}
.index .part03 .w80 .bottom div {
  overflow: visible;
}
.index .part03 .w80 .bottom div ul li {
  background-color: #f7f7f7;
  box-sizing: border-box;
  position: relative;
  border-radius: 1.875rem;
}
.index .part03 .w80 .bottom div ul li:hover a .num h4 {
  color: #fff;
}
.index .part03 .w80 .bottom div ul li:hover a .img img {
  top: -5rem;
}
.index .part03 .w80 .bottom div ul li:hover a .txt p {
  color: #fff;
}
.index .part03 .w80 .bottom div ul li:hover a .txt h3 {
  color: #fff;
}
.index .part03 .w80 .bottom div ul li:hover a .txt span {
  color: #fff;
}
.index .part03 .w80 .bottom div ul li:hover a .mask .m_box::after {
  opacity: 1;
  transform: scale(1);
}
.index .part03 .w80 .bottom div ul li a {
  padding: 1.25rem;
}
.index .part03 .w80 .bottom div ul li a .num {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  z-index: 2;
}
.index .part03 .w80 .bottom div ul li a .num h4 {
  font-size: 1.875rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part03 .w80 .bottom div ul li a .img {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.index .part03 .w80 .bottom div ul li a .img img {
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.index .part03 .w80 .bottom div ul li a .txt {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom div ul li a .txt img {
  width: 1.5rem;
}
.index .part03 .w80 .bottom div ul li a .txt p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom div ul li a .txt h3 {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part03 .w80 .bottom div ul li a .txt span {
  color: #000;
  margin: 0 0.375rem;
}
.index .part03 .w80 .bottom div ul li a .mask {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.index .part03 .w80 .bottom div ul li a .mask .m_box {
  position: relative;
  width: 100%;
  height: 100%;
}
.index .part03 .w80 .bottom div ul li a .mask .m_box::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/images/proBg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.1);
  opacity: 0;
  transition: all 1.5s ease;
}
.index .part03 .w80 .bottom .s_tool {
  margin-top: 0.5rem;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom .s_tool .sp {
  width: 60%;
}
.index .part03 .w80 .bottom .s_tool .sp .swiper-pagination span {
  width: 2.5rem;
  height: 0.125rem;
  border-radius: 0;
  margin-right: 0.25rem;
}
.index .part03 .w80 .bottom .s_tool .sp .swiper-pagination span.swiper-pagination-bullet-active {
  height: 3px;
  background-color: #000;
}
.index .part04 {
  background: #4c1d08 url(/images/newsBg.jpg) no-repeat center / cover;
  padding-top: 10.25rem;
  padding-bottom: 10.25rem;
}
.index .part04 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.index .part04 .w80 .top .title .t1 h3 {
  color: #fff;
}
.index .part04 .w80 .top .top_right {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .top .top_right .desc {
  width: calc(100% - 15.625rem);
}
.index .part04 .w80 .top .top_right .desc p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.index .part04 .w80 .top .more a i {
  background-color: #fff;
  color: #ec621f;
}
.index .part04 .w80 .bottom .n_content {
  margin-top: 5rem;
  width: 100%;
}
.index .part04 .w80 .bottom .n_content ul li {
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1rem;
  border-radius: 0.75rem;
  box-sizing: border-box;
}
.index .part04 .w80 .bottom .n_content ul li:hover a .d .d1 {
  background-color: #ec621f;
}
.index .part04 .w80 .bottom .n_content ul li:hover a .d .d1 p {
  color: #fff;
}
.index .part04 .w80 .bottom .n_content ul li:hover a .d .d2 p {
  color: #ec621f;
}
.index .part04 .w80 .bottom .n_content ul li:hover a .img img {
  transform: scale(1.1);
}
.index .part04 .w80 .bottom .n_content ul li a .d {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.index .part04 .w80 .bottom .n_content ul li a .d .d1 {
  background-color: #ec621f;
  padding: 0 1rem;
  border-radius: 1.875rem;
  margin-right: 1rem;
}
.index .part04 .w80 .bottom .n_content ul li a .d .d1 p {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.875rem;
  font-weight: 700;
  text-align: center;
}
.index .part04 .w80 .bottom .n_content ul li a .d .d2 p {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.875rem;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .bottom .n_content ul li a .t {
  margin-bottom: 2.5rem;
  width: 100%;
}
.index .part04 .w80 .bottom .n_content ul li a .t h4 {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
  height: 2.5rem;
}
.index .part04 .w80 .bottom .n_content ul li a .img {
  width: 100%;
  height: 0;
  padding-bottom: 13rem;
  overflow: hidden;
  border-radius: 1.5rem;
}
.index .part04 .w80 .bottom .n_content ul li a .img img {
  width: 100%;
  transition: all 1.5s ease;
}
@media screen and (max-width: 1440px) {
  .index .part01 .w80 .top .left .l_desc h4 {
    font-size: 1.25rem;
  }
  .index .part01 .w80 .top .right {
    width: 46%;
  }
  .index .part01 .w80 .top .right .content p {
    line-height: 1.8;
  }
  .index .part01 .w80 .center .item .i_box .i_top h2 {
    font-size: 3rem;
  }
  .index .part01 .w80 .center .item {
    height: 8rem;
  }
  .index .part02 .text .w80 .top .desc p {
    font-size: 1.25rem;
  }
  .index .part02 .text .w80 .bottom .item .t h3 {
    font-size: 1.25rem;
  }
  .index .part02 .text .w80 .bottom .item .i {
    width: 4.5rem;
    height: 4.5rem;
  }
  .index .part02 .text .w80 .bottom .item .i img {
    width: 2.5rem;
  }
  .index .part02 .text .w80 .bottom .item {
    height: 11.5rem;
  }
  .index .part02 .text .w80 .bottom .item::after {
    font-size: 3rem;
  }
  .index .part03 .w80 .bottom {
    margin-top: 3.5rem;
  }
  .index .part03 .w80 .bottom div ul li a .num h4 {
    font-size: 1.5rem;
  }
  .index .part03 .w80 .bottom div ul li a .txt h3 {
    font-size: 1.125rem;
    margin-top: 0.25rem;
    width: 100%;
    text-align: center;
  }
  .index .part03 .w80 .bottom div ul li a .txt p {
    font-size: 1rem;
  }
  .index .part04 .w80 .top .top_right .desc p {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .index .part03 {
    padding-top: 10rem;
  }
  .index .part04 {
    padding-top: 10rem;
  }
  .index .part04 .w80 .bottom .n_content ul li a .img {
    padding-bottom: 10.5rem;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .index .part01 .w80 .top .left {
    width: 100%;
  }
  .index .part01 .w80 .top .right {
    width: 100%;
    margin-top: 1.5rem;
  }
  .index .part01 .w80 .top .left .l_desc {
    display: none;
  }
  .index .part01 .w80 .center .item {
    width: 48%;
  }
  .index .part01 .w80 .center .item .i_box .i_top h2 {
    font-size: 2rem;
  }
  .index .part01 .w80 .center .item .i_box .i_top span {
    font-size: 0.75rem;
    margin-top: 8px;
    margin-left: 6px;
  }
  .index .part01 .w80 .center .item .i_box .i_bottom p {
    font-size: 0.875rem;
  }
  .index .part01 .w80 .center .item .i_box .i_bottom {
    margin-top: 0.5rem;
  }
  .index .part01 .w80 .center .item {
    height: 6rem;
    margin-bottom: 1rem;
  }
  .index .part01 .w80 .center {
    margin-top: 3rem;
  }
  .index .part02 .text .w80 .top .desc {
    width: 100%;
  }
  .index .part02 .text .w80 .top .desc p {
    font-size: 1rem;
  }
  .index .part02 .text .w80 .bottom .item {
    width: 100%;
  }
  .index .part02 .text .w80 .bottom .item {
    padding: 1.25rem;
    height: 5.5rem;
    margin-bottom: 0.2rem;
  }
  .index .part02 .text .w80 .bottom .item .i {
    width: 3rem;
    height: 3rem;
  }
  .index .part02 .text .w80 .bottom .item .i img {
    width: 1.5rem;
  }
  .index .part02 .text .w80 .bottom .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .index .part02 .text .w80 .bottom .item::after {
    font-size: 2.5rem;
    top: 50%;
    left: auto;
    right: 2rem;
    bottom: auto;
    transform: translateY(-50%);
  }
  .index .part03 .w80 .top .more {
    display: none;
  }
  .index .part03 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .index .part02 .text .w80 .bottom .item .t h3 {
    font-size: 1.125rem;
  }
  .index .part04 .w80 .top .top_right {
    width: 100%;
  }
  .index .part04 .w80 .top .top_right .desc {
    width: 100%;
    margin-top: 0.5rem;
  }
  .index .part04 .w80 .top .top_right .more {
    display: none;
  }
  .index .part04 .w80 .top .top_right .desc p {
    font-size: 1rem;
  }
  .index .part04 .w80 .bottom .n_content ul li a .img {
    padding-bottom: 12rem;
  }
  .index .part04 .w80 .bottom .n_content ul li a .t h4 {
    font-size: 1rem;
  }
  .index .part04 .w80 .bottom .n_content ul li a .t {
    margin-bottom: 1.5rem;
  }
  .index .part04 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.about .main {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.about .main .part01 {
  margin-bottom: 10rem;
}
.about .main .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 5rem;
}
.about .main .part01 .w80 .top .left {
  width: 45%;
}
.about .main .part01 .w80 .top .left .title .t2 {
  margin-top: 0;
}
.about .main .part01 .w80 .top .left .title .t2 h2 {
  line-height: 1.5;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(76, 29, 8, 0.2);
}
.about .main .part01 .w80 .top .left .title .t2 h2 span {
  color: #ec621f;
}
.about .main .part01 .w80 .top .right {
  width: 45%;
}
.about .main .part01 .w80 .top .right .content {
  margin-bottom: 2rem;
}
.about .main .part01 .w80 .top .right .content p {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
}
.about .main .part01 .w80 .txt {
  margin-top: 2rem;
}
.about .main .part01 .w80 .txt p {
  font-size: 1rem;
  color: #333;
  line-height: 2.5;
  font-weight: 400;
  text-align: left;
}
.about .main .part01 .w80 .txt p span {
  font-weight: 600;
}
.about .main .part01 .w80 .center {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .center .item {
  width: 33%;
  height: 9rem;
  border-radius: 0.625rem;
  background-color: #4c1d08;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .center .item .i_box .i_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .center .item .i_box .i_top img {
  width: 2.5rem;
  margin-right: 0.5rem;
}
.about .main .part01 .w80 .center .item .i_box .i_top h2 {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.about .main .part01 .w80 .center .item .i_box .i_bottom {
  margin-top: 1rem;
}
.about .main .part01 .w80 .center .item .i_box .i_bottom p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.8;
}
.about .main .part01 .w80 .center .item:nth-of-type(1) {
  background-color: #f7f7f7;
}
.about .main .part01 .w80 .center .item:nth-of-type(1) .i_box .i_top h2 {
  color: #4c1d08;
}
.about .main .part01 .w80 .center .item:nth-of-type(1) .i_box .i_bottom p {
  color: #4c1d08;
}
.about .main .part01 .w80 .center .item:nth-of-type(2) {
  background-color: #ec621f;
}
.about .main .part02 {
  width: 100%;
  height: 90vh;
  box-sizing: border-box;
  background: #4c1d08 url(/images/cultureBg.jpg) no-repeat fixed center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.about .main .part02 .w80 .top .txt p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 3px;
}
.about .main .part02 .w80 .bottom {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 .bottom .item {
  width: 23%;
  height: 16rem;
  border-radius: 0.75rem;
  padding: 2rem;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
}
.about .main .part02 .w80 .bottom .item .i_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.about .main .part02 .w80 .bottom .item .i_icon img {
  width: 3.5rem;
}
.about .main .part02 .w80 .bottom .item .i_text h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}
.about .main .part02 .w80 .bottom .item .i_text p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 100;
  text-align: center;
}
.about .main .part03 {
  width: 100%;
  height: auto;
  padding-top: 12rem;
  box-sizing: border-box;
  background: url(/images/tuanduiBg.jpg) no-repeat top center / 100%;
}
.about .main .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.about .main .part03 .w80 .top .txt {
  width: 60%;
  position: relative;
}
.about .main .part03 .w80 .top .txt::after {
  display: block;
  content: "";
  width: 0.375rem;
  height: 5rem;
  background-color: #ec621f;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.about .main .part03 .w80 .top .txt p {
  position: relative;
  z-index: 3;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  letter-spacing: 3px;
  padding-left: 1.25rem;
}
.about .main .part03 .w80 .bottom {
  margin-top: 5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part03 .w80 .bottom .item {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: 0.75rem;
}
.about .main .part03 .w80 .bottom .item:nth-of-type(4n) {
  margin-right: 0;
}
.about .main .part03 .w80 .bottom .item .i_img {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.25rem solid rgba(76, 29, 8, 0.2);
}
.about .main .part03 .w80 .bottom .item .i_img img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1440px) {
  .about .main {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .about .main .part01 .w80 .top .right {
    width: 46%;
  }
  .about .main .part01 .w80 .top .left .title .t2 h2 {
    font-size: 2rem;
    text-shadow: 2px 2px 0 rgba(76, 29, 8, 0.2);
  }
  .about .main .part01 .w80 .top {
    margin-bottom: 1rem;
  }
  .about .main .part01 .w80 .center .item .i_box .i_top h2 {
    font-size: 1.25rem;
  }
  .about .main .part01 .w80 .center .item .i_box .i_top img {
    width: 2rem;
  }
  .about .main .part01 .w80 .center .item .i_box .i_bottom p {
    font-size: 1.125rem;
  }
  .about .main .part01 .w80 .center .item {
    height: 7.5rem;
  }
  .about .main .part01 .w80 .center .item .i_box .i_bottom {
    margin-top: 0.5rem;
  }
  .about .main .part02 .w80 .top .txt p {
    font-size: 1.25rem;
  }
  .about .main .part02 .w80 .bottom .item .i_text h3 {
    font-size: 1.25rem;
  }
  .about .main .part02 .w80 .bottom .item .i_text p {
    font-size: 1.125rem;
  }
  .about .main .part02 .w80 .bottom .item {
    padding: 1.5rem;
    height: 14rem;
  }
  .about .main .part02 {
    height: 86vh;
  }
  .about .main .part03 .w80 .top .txt p {
    letter-spacing: 0;
    font-size: 1rem;
  }
  .about .main .part03 .w80 .top .txt::after {
    height: 4.5rem;
  }
}
@media screen and (max-width: 992px) {
  .about .main .part01 .w80 .top .left {
    width: 100%;
  }
  .about .main .part01 .w80 .top .right {
    width: 100%;
  }
  .about .main .part01 .w80 .top .left .title .t2 h2 {
    font-size: 1.25rem;
    text-shadow: 1px 1px 0 rgba(76, 29, 8, 0.2);
  }
  .about .main {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .about .main .part01 .w80 .center .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .about .main .part02 .w80 .top .txt {
    width: 100%;
  }
  .about .main .part02 .w80 .top .txt p {
    font-size: 1.125rem;
    letter-spacing: 0;
    margin-top: 0.5rem;
  }
  .about .main .part02 .w80 .bottom .item {
    width: 49%;
    height: 10rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
  }
  .about .main .part02 .w80 .bottom .item .i_icon img {
    width: 2rem;
  }
  .about .main .part02 .w80 .bottom .item .i_icon {
    margin-bottom: 0.5rem;
  }
  .about .main .part02 .w80 .bottom .item .i_text h3 {
    font-size: 1.125rem;
  }
  .about .main .part02 .w80 .bottom .item .i_text p {
    font-size: 1rem;
  }
  .about .main .part03 {
    padding-top: 6rem;
  }
  .about .main .part03 .w80 .top .txt {
    width: 100%;
    margin-top: 1rem;
  }
  .about .main .part03 .w80 .top .txt::after {
    display: none;
  }
  .about .main .part03 .w80 .top .txt p {
    padding-left: 0;
  }
  .about .main .part03 .w80 .bottom .item {
    width: 100%;
  }
}
.tuandui .main {
  padding-bottom: 10rem;
}
.tuandui .main .part03 {
  width: 100%;
  height: auto;
  padding-top: 12rem;
  box-sizing: border-box;
  background: url(/images/tuanduiBg.jpg) no-repeat top center / 100%;
}
.tuandui .main .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tuandui .main .part03 .w80 .top .txt {
  width: 60%;
  position: relative;
}
.tuandui .main .part03 .w80 .top .txt::after {
  display: block;
  content: "";
  width: 0.375rem;
  height: 5rem;
  background-color: #ec621f;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.tuandui .main .part03 .w80 .top .txt p {
  position: relative;
  z-index: 3;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  letter-spacing: 3px;
  padding-left: 1.25rem;
}
.tuandui .main .part03 .w80 .bottom {
  margin-top: 5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.tuandui .main .part03 .w80 .bottom .item {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: 0.75rem;
}
.tuandui .main .part03 .w80 .bottom .item:nth-of-type(4n) {
  margin-right: 0;
}
.tuandui .main .part03 .w80 .bottom .item .i_img {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.25rem solid rgba(76, 29, 8, 0.2);
}
.tuandui .main .part03 .w80 .bottom .item .i_img img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1440px) {
  .tuandui .main {
    padding-bottom: 8rem;
  }
  .tuandui .main .part03 .w80 .top .txt p {
    letter-spacing: 0;
    font-size: 1rem;
  }
  .tuandui .main .part03 .w80 .top .txt::after {
    height: 4.5rem;
  }
}
@media screen and (max-width: 992px) {
  .tuandui .main {
    padding-bottom: 6rem;
  }
  .tuandui .main .part03 {
    padding-top: 6rem;
  }
  .tuandui .main .part03 .w80 .top .txt {
    width: 100%;
    margin-top: 1rem;
  }
  .tuandui .main .part03 .w80 .top .txt::after {
    display: none;
  }
  .tuandui .main .part03 .w80 .top .txt p {
    padding-left: 0;
  }
  .tuandui .main .part03 .w80 .bottom .item {
    width: 100%;
  }
}
.join .main {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.join .main .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.join .main .w80 .top .txt {
  width: 60%;
  position: relative;
}
.join .main .w80 .top .txt::after {
  display: block;
  content: "";
  width: 0.375rem;
  height: 3rem;
  background-color: #ec621f;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.join .main .w80 .top .txt p {
  position: relative;
  z-index: 3;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  letter-spacing: 3px;
  padding-left: 1.25rem;
}
.join .main .w80 .join_list {
  margin-top: 3.75rem;
}
.join .main .w80 .join_list .join_list_title {
  background-color: #fdefe8;
  height: 4.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.join .main .w80 .join_list .join_list_title > div {
  width: 25%;
  font-size: 1.125rem;
  color: #000;
  line-height: 4.375rem;
  font-weight: 700;
  text-align: center;
}
.join .main .w80 .join_list ul li {
  border-bottom: 1px dashed #dfdfdf;
}
.join .main .w80 .join_list ul li .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.join .main .w80 .join_list ul li .top > div {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  width: 25%;
}
.join .main .w80 .join_list ul li .top > div.tp5.on i {
  transform: rotate(90deg);
}
.join .main .w80 .join_list ul li .top > div.tp5 i {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  display: inline-block;
  background-color: #4c1d08;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.join .main .w80 .join_list ul li .bottom {
  height: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  box-sizing: border-box;
  padding-left: 1.875rem;
}
.join .main .w80 .join_list ul li .bottom.active {
  padding-top: 1.875rem;
  padding-bottom: 25rem;
}
.join .main .w80 .join_list ul li .bottom p {
  font-size: 1rem;
  color: #333;
  line-height: 2.5rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .join .main {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .join .main .w80 .top .txt {
    width: 100%;
    margin-top: 0.5rem;
  }
  .join .main .w80 .top .txt p {
    font-size: 1rem;
    padding-left: 0;
  }
  .join .main .w80 .top .txt::after {
    display: none;
  }
  .join .main .w80 .join_list .join_list_title > div.item1 {
    width: 24%;
  }
  .join .main .w80 .join_list .join_list_title > div {
    font-size: 1rem;
  }
}
.product .main {
  padding-top: 12rem;
}
.product .main .part01 {
  margin-bottom: 10rem;
}
.product .main .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}
.product .main .part01 .w80 .top .left {
  width: 40%;
}
.product .main .part01 .w80 .top .left .title .t2 {
  margin-top: 0.5rem;
}
.product .main .part01 .w80 .top .left .title .t2 h2 {
  line-height: 1;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(76, 29, 8, 0.2);
}
.product .main .part01 .w80 .top .left .title .t2 h2 span {
  color: #ec621f;
}
.product .main .part01 .w80 .top .right {
  width: 60%;
}
.product .main .part01 .w80 .top .right .content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 2;
  font-weight: 600;
  text-align: left;
}
.product .main .part01 .w80 .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .w80 .bottom .item {
  width: 32%;
  margin-right: 2%;
}
.product .main .part01 .w80 .bottom .item:nth-of-type(3n) {
  margin-right: 0;
}
.product .main .part01 .w80 .bottom .item a {
  height: inherit;
  padding: 2rem 0 6rem;
  background: url(/images/proBg.jpg) no-repeat center / cover;
  border-radius: 0.625rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .w80 .bottom .item a .imgBox {
  position: relative;
  height: 70%;
}
.product .main .part01 .w80 .bottom .item a .imgBox .img {
  position: relative;
  z-index: 2;
  height: 100%;
}
.product .main .part01 .w80 .bottom .item a .imgBox .img img {
  height: 100%;
  transition: all 0.5s ease;
}
.product .main .part01 .w80 .bottom .item a .imgBox .img2 {
  position: absolute;
  bottom: -100%;
  transform: rotate(180deg);
  opacity: 0.5;
  height: 100%;
}
.product .main .part01 .w80 .bottom .item a .imgBox .img2 img {
  height: 100%;
  filter: blur(6px);
}
.product .main .part02 {
  margin-bottom: 10rem;
}
.product .main .part02 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}
.product .main .part02 .w80 .top .left {
  width: 45%;
}
.product .main .part02 .w80 .top .left .title .t2 {
  margin-top: 0;
}
.product .main .part02 .w80 .top .left .title .t2 h2 {
  line-height: 1.5;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(76, 29, 8, 0.2);
}
.product .main .part02 .w80 .top .left .title .t2 h2 span {
  color: #ec621f;
}
.product .main .part02 .w80 .top .right .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part02 .w80 .top .right .content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 2;
  font-weight: 600;
  text-align: left;
}
.product .main .part02 .w80 .top .right .content i {
  font-size: 1rem;
  line-height: 1;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  border-radius: 2rem;
  color: #ec621f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ec621f;
}
.product .main .part02 .w80 .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part02 .w80 .bottom .item {
  width: 24%;
  margin-bottom: 2rem;
  margin-right: 1.333%;
  background-color: #f7f7f7;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 1.875rem;
}
.product .main .part02 .w80 .bottom .item:nth-of-type(4n) {
  margin-right: 0;
}
.product .main .part02 .w80 .bottom .item:hover a .num h4 {
  color: #4c1d08;
}
.product .main .part02 .w80 .bottom .item:hover a .img img {
  transform: scale(1.1);
}
.product .main .part02 .w80 .bottom .item:hover a .txt p {
  color: #ec621f;
}
.product .main .part02 .w80 .bottom .item:hover a .txt h3 {
  color: #4c1d08;
}
.product .main .part02 .w80 .bottom .item:hover a .txt span {
  color: #4c1d08;
}
.product .main .part02 .w80 .bottom .item a {
  padding: 1.25rem;
}
.product .main .part02 .w80 .bottom .item a .num {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  z-index: 2;
}
.product .main .part02 .w80 .bottom .item a .num h4 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product .main .part02 .w80 .bottom .item a .img {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.product .main .part02 .w80 .bottom .item a .img.pro3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.product .main .part02 .w80 .bottom .item a .img.pro3 img {
  width: 86%;
  left: 7%;
}
.product .main .part02 .w80 .bottom .item a .img img {
  width: 70%;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 15%;
  z-index: 2;
  transition: all 0.5s ease;
}
.product .main .part02 .w80 .bottom .item a .txt {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part02 .w80 .bottom .item a .txt img {
  width: 1.5rem;
}
.product .main .part02 .w80 .bottom .item a .txt p {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .main .part02 .w80 .bottom .item a .txt h3 {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product .main .part02 .w80 .bottom .item a .txt span {
  color: #000;
  margin: 0 0.375rem;
}
.product .main .part03 {
  margin-bottom: 10rem;
}
.product .main .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}
.product .main .part03 .w80 .top .left {
  width: 45%;
}
.product .main .part03 .w80 .top .left .title .t2 {
  margin-top: 0;
}
.product .main .part03 .w80 .top .left .title .t2 h2 {
  line-height: 1.5;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(76, 29, 8, 0.2);
}
.product .main .part03 .w80 .top .left .title .t2 h2 span {
  color: #ec621f;
}
.product .main .part03 .w80 .top .right .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part03 .w80 .top .right .content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 2;
  font-weight: 600;
  text-align: left;
}
.product .main .part03 .w80 .top .right .content i {
  font-size: 1rem;
  line-height: 1;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  border-radius: 2rem;
  color: #ec621f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ec621f;
}
.product .main .part03 .w80 .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part03 .w80 .bottom .item {
  width: 24%;
  margin-bottom: 2rem;
  margin-right: 1.333%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: relative;
  border-radius: 1.875rem;
}
.product .main .part03 .w80 .bottom .item:nth-of-type(4n) {
  margin-right: 0;
}
.product .main .part03 .w80 .bottom .item:hover a .num h4 {
  color: #4c1d08;
}
.product .main .part03 .w80 .bottom .item:hover a .img img {
  transform: scale(1.1);
}
.product .main .part03 .w80 .bottom .item:hover a .txt p {
  color: #ec621f;
}
.product .main .part03 .w80 .bottom .item:hover a .txt h3 {
  color: #4c1d08;
}
.product .main .part03 .w80 .bottom .item:hover a .txt span {
  color: #4c1d08;
}
.product .main .part03 .w80 .bottom .item a {
  padding: 1.25rem;
}
.product .main .part03 .w80 .bottom .item a .num {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  z-index: 6;
}
.product .main .part03 .w80 .bottom .item a .num h4 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product .main .part03 .w80 .bottom .item a .img {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.product .main .part03 .w80 .bottom .item a .img img {
  width: 70%;
  position: relative;
  top: 0;
  left: 15%;
  z-index: 2;
  transition: all 0.5s ease;
}
.product .main .part03 .w80 .bottom .item a .txt {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part03 .w80 .bottom .item a .txt img {
  width: 1.5rem;
}
.product .main .part03 .w80 .bottom .item a .txt p {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .main .part03 .w80 .bottom .item a .txt h3 {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product .main .part03 .w80 .bottom .item a .txt span {
  color: #000;
  margin: 0 0.375rem;
}
@media screen and (max-width: 1440px) {
  .product .main {
    padding-top: 10rem;
  }
  .product .main .part01 .w80 .top .right .content p {
    line-height: 1.8;
  }
}
@media screen and (max-width: 992px) {
  .product .main {
    padding-top: 6rem;
  }
  .product .main .part01 .w80 .top .left {
    width: 100%;
  }
  .product .main .part01 .w80 .top .right {
    width: 100%;
    margin-top: 0.5rem;
  }
  .product .main .part01 .w80 .top .right .content p {
    font-size: 1rem;
  }
  .product .main .part01 .w80 .top .left .title .t2 h2 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 0 rgba(76, 29, 8, 0.2);
  }
  .product .main .part01 .w80 .bottom .item {
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  .product .main .part01 .w80 .bottom .item a {
    padding: 1rem 0 2rem 0;
  }
  .product .main .part01 .w80 .bottom .item a .imgBox .img2 {
    bottom: -94%;
  }
  .product .main .part02 .w80 .top .left {
    width: 100%;
  }
  .product .main .part02 .w80 .top .left .title .t2 h2 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 0 rgba(76, 29, 8, 0.2);
  }
  .product .main .part02 .w80 .top .right {
    display: none;
  }
  .product .main .part01 {
    margin-bottom: 6rem;
  }
  .product .main .part02 .w80 .bottom .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
    border-radius: 1rem;
  }
  .product .main .part03 .w80 .top .left {
    width: 100%;
  }
  .product .main .part03 .w80 .top .right {
    display: none;
  }
  .product .main .part03 .w80 .top .left .title .t2 h2 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 0 rgba(76, 29, 8, 0.2);
  }
  .product .main .part03 .w80 .bottom .item {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.product_details .main {
  margin-top: 11.25rem;
  margin-bottom: 4.375rem;
}
.product_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.product_details .main > div .left {
  width: 70%;
}
.product_details .main > div .left .pd_title {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .pd_title .desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .pd_title .desc img {
  width: 1.5rem;
  margin-right: 0.625rem;
}
.product_details .main > div .left .pd_title .desc p {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .left .pd_img {
  margin-top: 3.125rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .pd_img .img {
  width: 54%;
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 4px 4px 0 rgba(76, 29, 8, 0.2);
}
.product_details .main > div .left .pd_img .img img {
  width: 20rem;
  margin: 0 auto;
}
.product_details .main > div .left .pd_img .txt {
  width: 40%;
}
.product_details .main > div .left .pd_img .txt .pro_title {
  margin-bottom: 2rem;
}
.product_details .main > div .left .pd_img .txt .pro_title h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}
.product_details .main > div .left .pd_img .txt .pro_title p {
  font-size: 1rem;
  color: #333;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.875rem;
}
.product_details .main > div .left .pd_img .txt .pro_title::after {
  display: block;
  content: "";
  margin-top: 1.25rem;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.product_details .main > div .left .pd_img .txt .pro_content {
  margin: 1rem 0;
}
.product_details .main > div .left .pd_img .txt .pro_content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.product_details .main > div .left .pd_img .txt .pro_content p span {
  color: #333;
  font-weight: 600;
}
.product_details .main > div .left .pd_img .txt .tel a {
  width: 70%;
  box-sizing: border-box;
  padding: 1rem;
  background-color: #ec621f;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.375rem;
}
.product_details .main > div .left .pd_img .txt .tel a i {
  font-size: 1.75rem;
  font-weight: 400;
  margin-top: 0.2rem;
  margin-right: 0.2rem;
}
.product_details .main > div .left .pd_img .txt .button {
  margin-top: 4rem;
}
.product_details .main > div .left .pd_img .txt .button > div a {
  font-size: 1rem;
  color: #333;
  line-height: 2rem;
  font-weight: normal;
  text-align: left;
}
.product_details .main > div .left .details {
  margin-top: 4rem;
}
.product_details .main > div .left .details .d_title {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #000;
}
.product_details .main > div .left .details .d_title.mt50 {
  margin-top: 3.125rem;
}
.product_details .main > div .left .details .d_title h3 {
  font-size: 1.875rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .details p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  margin-bottom: 0.75rem;
}
.product_details .main > div .left .details strong {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.product_details .main > div .left .details img {
  width: 100%;
}
.product_details .main > div .left .btns {
  margin-top: 3.75rem;
  padding-top: 3.125rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.product_details .main > div .left .btns > div {
  background-color: #fdefe8;
  margin-bottom: 0.625rem;
  box-sizing: border-box;
  padding-left: 1.25rem;
}
.product_details .main > div .left .btns > div a {
  font-size: 1rem;
  color: #000;
  line-height: 4rem;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .left .btns > div a span {
  font-weight: 600;
}
.product_details .main > div .right {
  width: 22%;
  z-index: 1000;
}
.product_details .main > div .right .search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .search input {
  border: 1px solid #dadada;
  font-size: 1.125rem;
  color: #333;
  line-height: 3.125rem;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  height: 3.125rem;
  width: calc(100% - 3.125rem);
  padding-left: 1.25rem;
}
.product_details .main > div .right .search button {
  border: none;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0 0.375rem 0.375rem 0;
  background-color: #4c1d08;
}
.product_details .main > div .right .search button i {
  font-size: 1.5rem;
  color: #fff;
}
.product_details .main > div .right .right_01 {
  margin-top: 3.125rem;
}
.product_details .main > div .right .right_01 .right_01_title {
  background-color: #4c1d08;
  box-sizing: border-box;
  padding-left: 1.25rem;
}
.product_details .main > div .right .right_01 .right_01_title h3 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 3.375rem;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .right .right_01 .right_01_title h3 i {
  font-size: 1.125rem;
  margin-right: 0.625rem;
  font-weight: normal;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item {
  border-bottom: 1px solid #ededed;
  background-color: #fdefe8;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item.on .f_a i {
  transform: rotate(90deg);
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item.on ul li {
  height: 3.375rem;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a {
  height: 3.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a a {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  padding-left: 1.375rem;
  display: block;
  width: calc(100% - 3.125rem);
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a i {
  font-size: 1.25rem;
  color: #4c1d08;
  transition: all 0.5s ease;
  display: inline-block;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul {
  background-color: #fbfbfb;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li a {
  font-size: 1rem;
  color: #666;
  line-height: 3.375rem;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  padding-left: 1.25rem;
}
.product_details .main > div .right .right_02 {
  margin-top: 3.125rem;
}
.product_details .main > div .right .right_02 .right_02_title {
  background-color: #ec621f;
  box-sizing: border-box;
  padding-left: 1.25rem;
}
.product_details .main > div .right .right_02 .right_02_title h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 3.375rem;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .right_02 .right_02_title h3 i {
  font-size: 1.5rem;
  margin-right: 0.625rem;
}
.product_details .main > div .right .right_02 .right_02_list {
  margin-top: 1.875rem;
}
.product_details .main > div .right .right_02 .right_02_list .right_02_list_item {
  margin: 0px 2px 6px 0;
  display: inline-block;
  background-color: #eef9ff;
  padding: 0.875rem 1.125rem;
}
.product_details .main > div .right .right_02 .right_02_list .right_02_list_item a {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .tel {
  margin-top: 3.75rem;
  background-image: url(/images/proBg.jpg);
  background-size: 100%;
  height: 27.6rem;
  box-sizing: border-box;
  padding: 3.125rem;
}
.product_details .main > div .right .tel h3 {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.product_details .main > div .right .tel p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  opacity: 0.3;
}
.product_details .main > div .right .tel .tel_sub1 {
  margin-top: 2.75rem;
}
.product_details .main > div .right .tel .tel_sub1 span {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.4;
  display: block;
  margin-bottom: 0.6rem;
}
.product_details .main > div .right .tel .tel_sub1 h2 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .right .tel .tel_sub1 h4 {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .right .tel .tel_sub2 {
  margin-top: 1.5rem;
}
.product_details .main > div .right .tel .tel_sub2 span {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.4;
  display: block;
  margin-bottom: 0.6rem;
}
.product_details .main > div .right .tel .tel_sub2 h2 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .right .tel .tel_sub2 h4 {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .right .tel h1 {
  margin-top: 1.125rem;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.product_details .main > div .right.remove_fixed {
  position: static;
  transform: translateX(0);
}
@media screen and (max-width: 1440px) {
  .product_details .main {
    margin-top: 8.25rem;
  }
  .product_details .main > div .left .pd_title h3 {
    font-size: 1.5rem;
  }
  .product_details .main > div .right .tel {
    margin-top: 1.75rem;
    padding: 1.75rem;
    height: 26rem;
  }
  .product_details .main > div .right .tel h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .product_details .main > div .left .details .d_title h3 {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .details p {
    font-size: 1rem;
  }
  .product_details .main > div .left .pd_title .desc p {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .pd_img .txt .pro_title h3 {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .pd_img .img {
    height: 22rem;
  }
  .product_details .main > div .left .details strong {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .search button i {
    font-size: 1.25rem;
  }
  .product_details .main > div .right .search input {
    font-size: 1rem;
  }
  .product_details .main > div .right .right_01 .right_01_title h3 {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .tel h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main > div .left .pd_title .desc {
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
  }
  .product_details .main > div .left .pd_title .desc p {
    font-size: 1.125rem;
  }
  .product_details .main > div .left {
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img img {
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img {
    height: auto;
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img_list {
    display: none;
  }
  .product_details .main > div .left .title h4 {
    font-size: 1rem;
  }
  .product_details .main > div .left .pd_title h3 {
    font-size: 1.2rem;
  }
  .product_details .main > div .left .line4 {
    margin-top: 1rem;
    width: 4rem;
  }
  .product_details .main > div .right {
    width: 100%;
    margin-top: 4rem;
  }
  .product_details .main > div .left .details .d_title h3 {
    font-size: 1.3rem;
  }
  .product_details .main > div .right .tel h3 {
    font-size: 1.3rem;
  }
  .product_details .main > div .right {
    display: none;
  }
  .product_details .main > div .left .pd_img .txt {
    width: 100%;
    margin-top: 2rem;
  }
}
.news .main {
  min-height: 31.25rem;
  padding-bottom: 6.25rem;
}
.news .main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .main .top .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .top .btns .item {
  margin-left: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 0.25rem;
  background-color: #4c1d08;
  position: relative;
  overflow: hidden;
}
.news .main .top .btns .item a {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
  text-align: left;
}
.news .main .top .btns .item a span {
  width: 0.25rem;
  height: 1.25rem;
  display: block;
  background-color: #ec621f;
  margin-right: 0.4rem;
}
.news .main .top .btns .item::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #ec621f;
  transition: all 0.5s ease;
}
.news .main .top .btns .item:hover a {
  color: #fff;
}
.news .main .top .btns .item:hover a span {
  background-color: #fff;
}
.news .main .top .btns .item:hover::after {
  width: 100%;
}
.news .main .part01 ul li {
  border-bottom: 1px solid #dfdfdf;
  padding: 3.125rem 0;
  transition: all 1s ease;
}
.news .main .part01 ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .date {
  width: 8%;
}
.news .main .part01 ul li a .date h2 {
  font-size: 5.75rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}
.news .main .part01 ul li a .date p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news .main .part01 ul li a .text {
  width: 46%;
}
.news .main .part01 ul li a .text h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.25rem;
}
.news .main .part01 ul li a .text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3.75rem;
}
.news .main .part01 ul li a .text .n_more {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .text .n_more h5 {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.news .main .part01 ul li a .text .n_more i {
  margin-left: 0.625rem;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.625rem;
  font-weight: 400;
  text-align: center;
  display: block;
  transform: rotate(90deg);
  width: 1.625rem;
  height: 1.625rem;
  background-color: #ec621f;
  border-radius: 50%;
}
.news .main .part01 ul li a .img {
  width: 32%;
  height: 0;
  border: 6px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding-bottom: 17.125rem;
  border-radius: 8px;
}
.news .main .part01 ul li a .img img {
  width: 100%;
  transition: all 2s ease;
}
.news .main .part01 ul li:hover {
  background-color: #f5f5f5;
}
.news .main .part01 ul li:hover a .img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1440px) {
  .news .main .top .desc p {
    font-size: 1.125rem;
  }
  .news .main .part01 ul li a .img {
    padding-bottom: 14.625rem;
    width: 32%;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
  }
  .news .main .part01 ul li a .text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .news .main .part01 ul li a .text span {
    font-size: 0.75rem;
    width: 11.25rem;
    height: 2.5rem;
  }
  .news .main .part01 ul li a .text span img {
    width: 1.125rem;
  }
  .news .main .part01 ul li a .text span::after {
    background-size: contain;
  }
  .news .main .part01 ul li {
    padding: 1.5rem 0;
  }
  .news .main .part01 ul li a .date {
    width: 7%;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 3.25rem;
  }
  .news .main .part01 ul li a .date p {
    font-size: 0.9375rem;
  }
  .news .main .part01 ul li a .text {
    width: 50%;
  }
  .news .main .btn ul li a {
    line-height: 2.875rem;
  }
  .news .main .top .title2::after {
    width: 6.25rem;
    height: 6.25rem;
  }
  .news .main .top .title2::before {
    width: 5rem;
    height: 5rem;
  }
  .news .main .top .title2 h2 {
    font-size: 3rem;
  }
  .news .main .top .title2 {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
  .news .main .top {
    margin-top: 7.5rem;
  }
  .news .main {
    padding-bottom: 1.25rem;
  }
  .news .main .top .btns .item a {
    font-size: 1rem;
  }
  .news .main .part01 ul li a .text .n_more h5 {
    font-size: 1rem;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 992px) {
  .news .main .top .btns {
    display: none;
  }
  .news .main .top .title h2 {
    font-size: 1.5rem;
  }
  .news .main .title {
    margin-top: 0rem;
  }
  .news .main .btn {
    display: none;
  }
  .news .main .part01 ul li {
    margin-bottom: 1.875rem;
  }
  .news .main .part01 ul li a .text p {
    display: none;
  }
  .news .main .part01 ul li a .date {
    display: none;
  }
  .news .main .part01 ul li a .img {
    width: 100%;
    padding-bottom: 13.75rem;
    margin-top: 1.875rem;
  }
  .news .main .part01 ul li a .text span {
    height: 2.875rem;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .news .main .top .title2 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    margin-left: 2.25rem;
  }
  .news .main .top .title2::after {
    width: 4.375rem;
    height: 4.375rem;
  }
  .news .main .top .title2::before {
    width: 3.5rem;
    height: 3.5rem;
  }
  .news .main .top .title2 h2 {
    font-size: 2.25rem;
  }
  .news .main .top .bigSize {
    display: none;
  }
  .news .main .part01 ul li a .text {
    width: 100%;
  }
  .news .main .part01 ul li a .img {
    width: 100%;
  }
  .news .main .part01 ul li a .text p {
    display: block;
  }
  .news .main .top {
    margin-top: 5.625rem;
  }
  .news .main .part01 {
    margin-top: 1rem;
  }
}
.news_details .main {
  padding-bottom: 5.625rem;
}
.news_details .main .n_center .ct .detailed > .n_title {
  display: block;
  visibility: visible;
}
.news_details .main .n_center .ct .detailed > .n_title h3 {
  font-size: 1.875rem;
  color: #333;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #d6d6d6;
  margin-bottom: 2.5rem;
}
.news_details .main .n_center .ct .detailed .sub2 .share p {
  margin: 0 0.625rem;
  font-size: 0.9375rem;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content {
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content img {
  display: block;
  width: initial;
  margin: 0 auto;
}
.news_details .main .n_center .ct .detailed .sub2 .np {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div {
  width: 49.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  padding: 0 2rem;
  box-sizing: border-box;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(1) i {
  margin-right: 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(2) i {
  margin-left: 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div i {
  font-size: 24px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div a {
  padding: 20px 0;
  font-size: 16px;
  color: #000;
  line-height: 1.3;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_details .main .ct .detailed > .n_title h3 {
    font-size: 1.5rem;
  }
  .news_details .main .ct .detailed .sub2 .news_content p {
    font-size: 0.875rem;
  }
  .news_details .main .ct .detailed .sub2 .np div a {
    font-size: 0.875rem;
    line-height: 3rem;
  }
  .news_details .main .ct .detailed .sub2 .np div {
    width: 49%;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.25rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    font-size: 1rem;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .news_details .main .n_center .w80 .detailed {
    margin-top: 6.25rem;
  }
  .news_details .mt-100 {
    margin-top: 4.375rem;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content img {
    width: 100%;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np {
    flex-wrap: wrap;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div {
    width: 100%;
    height: 3rem;
    margin-bottom: 0.625rem;
    justify-content: flex-start;
    padding-left: 1.25rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div i {
    display: none;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    line-height: 1;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 0.9375rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .share p:nth-last-of-type(1) {
    display: none;
  }
}
.contact .main {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  background-color: #f5f5f5;
}
.contact .main::before {
  display: block;
  content: "";
  width: 100%;
  height: 80vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(/images/proBg1.png) no-repeat left top / 100%;
}
.contact .main::after {
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(/images/proBg2.png) no-repeat right bottom / 100%;
}
.contact .main .part01 {
  position: relative;
  z-index: 6;
}
.contact .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .left {
  width: 32%;
}
.contact .main .part01 .w80 .left .img {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
.contact .main .part01 .w80 .left .img img {
  width: 100%;
  display: block;
}
.contact .main .part01 .w80 .right {
  width: 60%;
}
.contact .main .part01 .w80 .right .sub1 .sub1_sub1 {
  margin-bottom: 5rem;
}
.contact .main .part01 .w80 .right .sub1 .sub1_sub1 h3 {
  font-size: 1.5rem;
  color: #ec621f;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.contact .main .part01 .w80 .right .sub2 {
  margin-top: 10rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map {
  margin-bottom: 1.2rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon {
  margin-bottom: 0.3rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon img {
  width: 5rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid #4c1d08;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_txt p {
  font-size: 0.75rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.3;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 {
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 1rem 0;
  padding-left: 1rem;
  box-sizing: border-box;
  background-color: #ec621f;
  border-radius: 0.5rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item h3 {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
  width: 38%;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) p {
  font-size: 1rem;
}
.contact .main .part02 {
  margin-top: 10rem;
  position: relative;
  z-index: 6;
}
.contact .main .part02 .w80 .sub1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub1 .sub1_sub1 {
  width: 32%;
}
.contact .main .part02 .w80 .sub1 .sub1_sub1 h3 {
  font-size: 2rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 .basic-radio {
  width: 33%;
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 .basic-radio label {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 2px;
}
.contact .main .part02 .w80 .sub2 {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 {
  width: 32%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 h3 {
  font-size: 2rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  margin-bottom: 1rem;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 p {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 {
  width: 60%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div {
  width: 49%;
  margin-bottom: 0.8rem;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div input {
  width: 100%;
  box-sizing: border-box;
  padding-left: 1.4rem;
  font-size: 1rem;
  color: #000;
  line-height: 3.75rem;
  font-weight: 100;
  text-align: left;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div.sub2_item_box2 {
  width: 100%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div.sub2_item_box2 textarea {
  padding: 1.4rem;
  width: 100%;
  min-height: 12rem;
  background-color: #fff;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item button {
  width: 100%;
  background-color: #ec621f;
  font-size: 1rem;
  color: #fff;
  line-height: 3.75rem;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact .main .part01 .w80 .right .sub1 .sub1_sub1 h3 {
    font-size: 1.125rem;
  }
  .contact .main .part01 .w80 .right .sub2 {
    margin-top: 3rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item p {
    font-size: 1rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
    width: 26%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
    width: 46%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon img {
    width: 4rem;
  }
  .contact .main .part02 {
    margin-top: 7rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
    width: 38%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
    width: 30%;
  }
  .contact .main .part02 .w80 .sub1 .sub1_sub1 h3 {
    font-size: 1.75rem;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub1 h3 {
    font-size: 1.75rem;
  }
  .contact .main .part02 .w80 .sub1 .sub1_sub2 .basic-radio label {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 992px) {
  .contact .main {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .contact .main .part01 .w80 .left {
    display: none;
  }
  .contact .main .part01 .w80 .right {
    width: 100%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
    width: 100%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .contact .main .part02 .w80 .sub1 {
    display: none;
  }
  .contact .main .part02 .w80 .sub2 {
    margin-top: 0;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub1 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub2 {
    width: 100%;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub1 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .contact .main .part02 {
    margin-top: 5rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .title {
    width: 100%;
  }
}
