@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/HarmonyOS_Sans_Bold.ttf");
  font-family: "title";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", sans-serif;
  box-sizing: border-box;
}
@font-face {
  font-family: "iconfont";
  src: url("../icons/iconfont.eot");
  src: url("../icons/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../icons/iconfont.woff") format("woff"),
    url("../icons/iconfont.ttf") format("truetype"),
    url("../icons/iconfont.svg#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
input,
button {
  background: none;
  border: none;
  box-shadow: none;
}
/*index*/
.w_all {
  width: 80%;
  margin: 0 auto;
}
.w_all2 {
  width: 90%;
  margin: 0 auto;
}
.w_all3 {
  width: 100%;
  margin: auto;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.w100p10 {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
.w100p5 {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.pt5 {
  padding-top: 5%;
  padding-bottom: 5%;
}
.font18 p {
  font-size: 1.8rem;
}

html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  background: #fff;
  --color: #fc8800;
}

/* 导航 Strat */
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  padding: 20px 0;
  background: #fff;
}
header .navBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  width: auto;
  height: 48px;
}
header .nav ul {
  display: flex;
  align-items: center;
  gap: 0 42px;
}
header .nav a {
  font-size: 1.8rem;
  color: #252525;
  transition: all 0.4s;
}
header .nav a:hover {
  color: var(--color);
}
header .nav .active a {
  color: var(--color);
}
header .nav .run a {
  font-size: 1.4rem;
  color: #fff;
  padding: 10px 15px;
  background: var(--color);
  border-radius: 30px;
}
/* 导航 End*/

/* 公共 Strat */
.webPage {
  width: 100%;
  position: relative;
  padding-top: 180px;
}
.title h2 {
  font-size: 5.4rem;
  color: #252525;
}
.title h3 {
  font-size: 2.4rem;
  font-weight: normal;
  color: #252525;
  line-height: 2;
}
.part {
  width: 100%;
  position: relative;
}
/* 公共 End*/

/* 网站欣赏 Strat */
.home .tit {
  width: 80%;
  position: relative;
  display: flex;
  align-items: baseline;
}
.home .tit h2 {
  font-size: 5.4rem;
  color: var(--color);
  font-weight: normal;
  letter-spacing: 2px;
}
.home .tit strong {
  font-size: 7.8rem;
  font-family: "title";
  font-weight: bolder;
  letter-spacing: 2px;
  margin-right: 36px;
  color: #71d126;
}
.home .web {
  margin-top: 5%;
}
.home .web ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
}
.home .web ul .imgBox {
  width: 100%;
  padding-bottom: 62.5%;
  transition: 0.3s ease-out;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home .web ul .imgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .web ul .imgBox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-image: url("../images/iconLink.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .web ul .imgBox img {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* visibility: hidden; */
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .web ul li a:hover .imgBox::before {
  opacity: 1;
}
.home .web ul li a:hover .imgBox::after {
  opacity: 1;
}
.home .web ul li a:hover .imgBox img {
  transform: translate(-50%, -50%) scale(1.15);
}
.home .web ul .txtBox {
  margin-top: 24px;
}
.home .web ul h3 {
  font-size: 1.6rem;
  font-weight: normal;
  color: #666666;
}
.home .web ul h2 {
  font-size: 2.8rem;
  font-weight: normal;
  color: #252525;
  line-height: 2;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .web ul li a:hover h2 {
  color: var(--color);
}

.pages ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 54px;
}
.pages ul li {
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 5px;
  cursor: pointer;
  /* background: #eaeaea; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages a,
.pages span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #666;
  text-align: center;
}
.pages ul h2 {
  font-size: 1.6rem;
  font-weight: normal;
  color: #666;
  margin-left: 15px;
}
.pages img {
  width: 18px;
  height: 18px;
}
.pages li:hover,
.pages li.active {
  background: var(--color);
  border-color: var(--color);
}
.pages li:hover a,
.pages li.active span,
.pages li:hover span {
  color: #fff;
}
.pages li:first-of-type,
.pages li:last-of-type {
  background: none !important;
}
/* 网站欣赏 End*/

/* 底部栏 Strat */
footer {
  width: 100%;
  position: relative;
  z-index: 9;
  background: #333333;
}
footer .bar {
  padding: 3% 0 3%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
footer .bar h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
footer .bar p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 10px;
}
footer .left img {
  height: 50px;
  width: auto;
}
footer .right p a {
  color: #fff;
  display: block;
  font-size: 1.4rem;
}
footer .links img {
  width: 130px;
}
footer .copy {
  position: absolute;
  left: 0;
  bottom: 15%;
}
footer .copy p,
footer .copy span,footer .copy a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
}
footer .copy a {
  display: inline-block;
  margin-top: 5px;
}
footer .leaveMsg p {
  display: flex;
}
footer .leaveMsg p strong {
  font-size: 1.4rem;
  font-weight: normal;
  color: #fff;
}
input,
button,
textarea {
  background: none;
  border: none;
  box-shadow: none;
}
footer .leaveMsg input,
footer .leaveMsg textarea {
  width: 240px;
  background-color: #5a5a5a;
  font-size: 1.4rem;
  padding: 5px 5px;
  border-radius: 5px;
  color: #fff;
}
footer .leaveMsg textarea {
  height: 80px;
}
footer .leaveMsg .message {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .leaveMsg .submit {
  margin-top: 42px;
}
footer .leaveMsg .submit button {
  padding: 5px 15px;
  color: #fff;
  font-size: 1.4rem;
  background: #5a5a5a;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .leaveMsg .submit button:hover {
  opacity: 0.85;
}
/* 底部栏 End*/

/* 关于我们 Strat */
.about {
  padding-bottom: 5%;
}
.about .con {
  margin-top: 5%;
}
.about .brand {
  width: 100%;
  position: relative;
  /* 有上到下渐变 */
  background: linear-gradient(to bottom, #f0f0f0, #fff);
  padding-bottom: 15%;
  padding-top: calc(5% + 100px);
}
.about .brand .con h2 {
  font-size: 3.2rem;
  font-weight: normal;
  text-align: center;
}
.about .brand .con .text {
  margin-top: 32px;
}
.about .brand .con p {
  line-height: 1.75;
  color: #252525;
  text-align: center;
}
.about .part {
  margin-top: 8%;
}
.about .part:first-of-type {
  margin-top: 0;
}
.about .purpose {
  width: 100%;
  position: relative;
  margin-top: 5%;
}
.about .purpose .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .purpose .con .aa {
  width: 48%;
  position: relative;
}
.about .purpose .con .bb {
  width: 42%;
  position: relative;
}
.about .purpose li {
  opacity: 0.4;
  border-bottom: 1px solid #000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.about .purpose li.active {
  opacity: 1;
}
.about .purpose .qu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}
.about .purpose .tit {
  display: flex;
  align-items: center;
  width: 100%;
}
.about .purpose span {
  font-size: 2.4rem;
  color: #252525;
  margin-right: 25%;
}
.about .purpose .tit h2 {
  font-size: 2rem;
  color: #252525;
}
.about .purpose .an {
  display: none;
  margin-left: calc(25% + 13px);
  padding-bottom: 20px;
}
.about .purpose p {
  font-size: 1.6rem;
}
.about .purpose .button {
  position: relative;
  width: 12px;
  height: 12px;
  transition: all 0.4s;
}
.about .purpose .button:before {
  content: "";
  width: 2px;
  height: 12px;
  background: #252525;
  position: absolute;
  left: 5px;
  transition: 0.3s;
}
.about .purpose .button:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #252525;
  position: absolute;
  top: 5px;
}
.about .purpose li.active .button {
  rotate: -180deg;
}
.about .purpose li.active .button::before {
  opacity: 0;
}
.about .kind dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about .kind dl dd {
  width: 31.3%;
  overflow: hidden;
  position: relative;
}
.about .kind dl dd img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.about .kind dl dd:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.about .kind dl dd p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .kind dl dd:hover p {
  height: 100%;
}

.about .way .con {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.about .way .aa {
  width: 50%;
  position: relative;
}
.about .way .bb {
  width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.about .way .bb span {
  font-size: 1.8rem;
  color: #252525;
  line-height: 1.75;
}
/* 关于我们 End*/

/* 登录 Strat */
.login {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}
.login .box {
  width: 60%;
  /* height: 100%; */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
}
.login .aa,
.login .bb {
  width: 50%;
  /* height: 100%; */
  position: relative;
  overflow: hidden;
}
.login .aa .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login .bb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 8%;
}
.login .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: #252525;
}
.login .tit  h2{
  font-size: 2.6rem;
  font-weight: bold;
  color: #252525;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.login .tit a:hover h2{
  color: var(--color);
}
.login .tit a.active h2{
  /* text-decoration: underline; */
  text-decoration-color: var(--color);
  color: var(--color);
}
.login form p {
  position: relative;
  margin: 12px 0;
}
.login form input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 12px 24px;
  background: #eeeced;
  font-size: 1.6rem;
  color: #1a1a1a;
  /* margin: 16px 0; */
  line-height: 32px;
  border-radius: 4px;
}
.login form input::placeholder {
  font-size: 1.6rem;
  color: #a6a5a6;
}
.login form .bot .code {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login form .bot .code a {
  font-size: 1.6rem;
  color: #999999;
}
.login form .bot .code a span {
  color: var(--color);
}
.login form .bot .more {
  margin-top: 42px;
}
.login form .bot .more button {
  display: block;
  background: var(--color);
  width: 100%;
  z-index: 4;
  color: #fff;
  font-size: 1.8rem;
  padding: 15px 0;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.login form .bot .more button:hover {
  opacity: 0.85;
}
.login .close {
  position: absolute;
  right: 32px;
  top: 24px;
  width: 24px;
  height: 24px;
}
/* 登录 End*/

/* 注册 Strat */
.login input::-webkit-outer-spin-button,
.login input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.login input[type="number"] {
  -moz-appearance: textfield;
}
.login form p.verify{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.login form p.verify input{
  width: 60%;
}
.login form p.verify a{
  display: flex;
  align-items: center;
  justify-content: center;
  width:  37%;
  border-radius: 4px;
  background: var(--color);
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
/* 注册 End*/


/* 其它 Strat */
.form {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  object-position: center;
}
.form p{
  font-size: 1.6rem;
  color: #252525;
  display: flex;
  justify-content: center;
  object-fit: cover;
  align-items: center;
  text-align: center;
  object-fit: cover;
}

/* 其它 End*/