header {
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
  height: 90px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
header .logo {
  height: 40px;
}
header .wrapper {
  height: 100%;
}
header ul {
  height: 100%;
}
header ul li {
  position: relative;
  height: 100%;
  margin-left: 50px;
  font-size: 18px;
}
header ul li a {
  display: flex;
  align-items: center;
  height: 100%;
}
header ul li .dropmenu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%) scale(0);
  width: 180px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  z-index: 100;
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
header ul li .dropmenu a {
  display: block;
  padding: 15px;
  text-align: center;
}
header ul li .dropmenu a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
header ul li .dropmenu a:hover {
  background-color: rgba(244, 67, 54, 0.1);
}
header ul li::before {
  color: #f00;
  content: attr(data-hover);
  position: absolute;
  top: 50%;
  opacity: 0;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  transform: scale(1.1) translateX(10px) translateY(-20px) rotate(4deg);
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
  font-weight: 700;
}
header ul li:hover > a {
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}
header ul li:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  animation: widthchange 0.3s linear;
}
header ul li:hover::before {
  transform: scale(1) translateX(0px) translateY(-50%) rotate(0deg);
  opacity: 1;
}
header ul li:hover .dropmenu {
  transform: translate(-50%, 100%) scale(1);
}
header ul li:hover .dropmenu a {
  color: #000;
  font-weight: 400;
  font-size: 16px;
}
header ul li.on a {
  font-weight: 700;
  color: var(--main-color);
}
header ul li.on::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: var(--main-color);
  animation: widthchange 0.2s linear;
}
header ul li.on .dropmenu a {
  color: #000;
  font-weight: 400;
  font-size: 16px;
}
@keyframes widthchange {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
header .hamburger {
  display: none;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.field-wrapper {
  padding: 50px;
}
.field-wrapper p {
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}
.field-wrapper ul li {
  font-size: 16px;
}
.field-wrapper ul li img {
  display: block;
  height: 60px;
  margin-bottom: 10px;
}
.project {
  background-color: #333333;
}
.project .wrapper {
  overflow: hidden;
}
.project .swiper-slide img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.project .swiper-slide p {
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
  color: #fff;
}
.advantage .item {
  width: 50%;
  padding: 35px;
}
.advantage .item .fan {
  position: relative;
  width: 150px;
  height: 150px;
  transition: all 0.1s linear;
  cursor: pointer;
}
.advantage .item .fan:hover {
  transform: scale(1.1);
}
.advantage .item .fan i {
  color: #fff;
  z-index: 10;
  margin: 30px 0 0 30px;
}
.advantage .item .fan::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: #f00;
  clip-path: circle(100% at 100% 100%);
  z-index: 2;
}
.advantage .item .fan::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: #f3bfc1;
  clip-path: polygon(58% 58%, 50% 0, 0 50%);
  transform: translate(50%, 0);
  z-index: 1;
}
.advantage .item .title {
  width: 240px;
  text-align: center;
}
.advantage .item .title p {
  font-size: 18px;
  margin-bottom: 15px;
}
.advantage .item .title span {
  font-size: 16px;
}
.advantage .item:first-child .title {
  margin-right: 40px;
}
.advantage .item:nth-child(2) .fan::before {
  background: #333;
  clip-path: circle(100% at 0 100%);
}
.advantage .item:nth-child(2) .fan::after {
  background: #bbbbbb;
  clip-path: polygon(100% 50%, 50% 0, 43% 58%);
  transform: translate(0, 0);
}
.advantage .item:nth-child(2) .fan i {
  margin: 30px 30px 0 0;
}
.advantage .item:nth-child(2) .title {
  margin-left: 40px;
}
.advantage .item:nth-child(3) .fan::before {
  background: #333;
  clip-path: circle(100% at 100% 0);
}
.advantage .item:nth-child(3) .fan::after {
  background: #bbbbbb;
  clip-path: polygon(50% 100%, 0 50%, 58% 43%);
  transform: translate(50%, -50%);
}
.advantage .item:nth-child(3) .fan i {
  margin: -30px 0 0 30px;
}
.advantage .item:nth-child(3) .title {
  margin-right: 40px;
}
.advantage .item:nth-child(4) .fan::before {
  clip-path: circle(100% at 0 0);
}
.advantage .item:nth-child(4) .fan::after {
  clip-path: polygon(50% 100%, 43% 43%, 100% 50%);
  transform: translate(0, -50%);
}
.advantage .item:nth-child(4) .fan i {
  margin: -30px 0 0 -30px;
}
.advantage .item:nth-child(4) .title {
  margin-left: 40px;
}
.aboutUs .left-box li {
  width: 200px;
  height: 115px;
  background-color: #eaedf1;
}
.aboutUs .left-box li span {
  font-size: 40px;
  color: #d1a359;
}
.aboutUs .left-box li em {
  font-size: 34px;
  color: #d1a359;
}
.aboutUs .left-box li p {
  font-size: 14px;
}
.aboutUs .left-box .txt {
  text-align: justify;
  line-height: 38px;
}
.aboutUs .right-box {
  width: 45%;
  background-color: #eaedf1;
}
.aboutUs .right-box img {
  display: block;
  width: 100%;
}
footer {
  width: 100%;
  background-color: #333;
}
footer .cooperat {
  padding: 30px 0;
  background-color: #fafafa;
}
footer .cooperat .img-bg-box {
  position: relative;
  width: 55%;
  height: 430px;
}
footer .cooperat .img-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .cooperat .img-bg-box .title-hd {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
footer .cooperat .formbox {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .cooperat .formbox ul {
  width: 470px;
}
footer .cooperat .formbox li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
footer .cooperat .formbox li span {
  font-size: 16px;
}
footer .cooperat .formbox li input {
  width: 470px;
  height: 30px;
  font-size: 16px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #333;
}
footer .cooperat .formbox .btn {
  width: 480px;
}
footer .cooperat .formbox .submit-btn {
  width: 130px;
  height: 40px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}
footer .contact {
  margin-right: 100px;
  color: #fff;
}
footer .contact li {
  font-size: 15px;
}
footer .contact li p {
  width: 330px;
}
footer dl {
  color: #fff;
}
footer dl dt {
  margin-bottom: 15px;
}
footer dl dd {
  font-size: 14px;
  transition: all 0.2s linear;
  cursor: pointer;
}
footer dl dd:not(:last-child) {
  margin-bottom: 10px;
}
footer dl dd:hover {
  transform: translateX(-8px);
}
footer dl a {
  color: #fff;
}
footer .menus dl:not(:last-child) {
  margin-right: 50px;
}
footer .copyright {
  width: 100%;
  height: 70px;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
footer .copyright a {
  color: #fff;
  margin-right: 5px;
}
.person-item {
  width: 50%;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}
.person-item img {
  display: block;
  width: 230px;
  height: 290px;
  margin-right: 30px;
  object-fit: cover;
}
.person-item .profile-box {
  flex: 1;
  padding-right: 30px;
}
.person-item .profile {
  padding: 10px 0 18px;
  border-bottom: 2px solid #35383d;
}
.person-item .profile .name {
  margin-bottom: 8px;
  font-size: 22px;
  color: #000;
}
.person-item .profile .job {
  font-size: 16px;
  color: #000;
}
.person-item .detail {
  overflow: hidden;
  height: 179px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 18px;
  color: #666;
  text-align: justify;
}
.prize-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 260px;
}
.prize-item .img-wrap {
  width: 260px;
  border: 1px solid #dcdcdc;
}
.prize-item .img-wrap img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.prize-item .text {
  width: 260px;
  height: 92px;
  padding: 10px 5px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.achievement-item {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 20px;
  border: 1px solid #eee;
}
.achievement-item img {
  position: relative;
  display: block;
  width: 265px;
  height: 155px;
  object-fit: cover;
  z-index: 10;
}
.achievement-item h3 {
  position: relative;
  margin-bottom: 15px;
  z-index: 10;
}
.achievement-item p {
  position: relative;
  font-size: 15px;
  line-height: 22px;
  color: #666;
  text-align: justify;
  z-index: 10;
}
.achievement-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: transparent;
  transition: all 0.2s linear;
}
.achievement-item:hover::after {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
.idea_box {
  width: 100%;
  height: 425px;
  background-image: url(../images/idea_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.idea_box .item {
  width: 50%;
  color: #ffeb9b;
}
.idea_box .item p {
  font-size: 28px;
}
.idea_box .item p:not(:last-child) {
  margin-bottom: 10px;
}
.idea_box .item .content {
  position: relative;
}
.idea_box .item .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-color: #ffeb9b;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  color: #000;
}
.idea_box .item .box span {
  font-size: 18px;
  margin-bottom: 5px;
}
.idea_box .item .box em {
  display: block;
  width: 80px;
  font-size: 14px;
  text-align: center;
}
.idea_box .item .box:first-child {
  margin-bottom: 10px;
}
.idea_box .item .box:nth-child(2) {
  position: absolute;
  top: 80px;
  left: -53%;
}
.idea_box .item .box:nth-child(3) {
  position: absolute;
  top: 80px;
  left: 53%;
}
.staffgarden-item {
  width: 49%;
  margin-bottom: 20px;
  border: 1px solid #eee;
  cursor: pointer;
}
.staffgarden-item img {
  position: relative;
  display: block;
  width: 265px;
  height: 155px;
  object-fit: cover;
  z-index: 10;
}
.staffgarden-item h3 {
  position: relative;
  margin-bottom: 15px;
  z-index: 10;
}
.staffgarden-item p {
  position: relative;
  font-size: 15px;
  line-height: 22px;
  color: #666;
  text-align: justify;
  z-index: 10;
}
.staffgarden-item:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.news-detail {
  padding-top: 50px;
}
.news-detail .title {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--main-color);
}
.news-detail .title span {
  color: #999;
  margin-top: 10px;
}
.news-detail .content {
  padding: 50px 0;
}
.news-detail .content img {
  width: 100%;
  object-fit: cover;
  padding: 30px;
}
.news-detail .content p {
  line-height: 30px;
  text-align: justify;
}
.server-detail p {
  margin-bottom: 50px;
  line-height: 30px;
}
.server-detail img {
  width: 100%;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0;
}
.process .item p {
  margin-top: 10px;
  font-size: 16px;
}
.process .item img {
  width: 100px;
  height: 100px;
  transition: all 0.1s ease-in-out;
}
.process .item:hover {
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.process .item:hover img {
  transform: scale(1.04);
}
.process .item:hover p {
  font-weight: 700;
  color: var(--main-color);
}
.gtrol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.gtrol .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.1s linear;
}
.gtrol .img-wrap img {
  width: 100%;
  transition: all 0.2s linear;
}
.gtrol .img-wrap:hover {
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.gtrol .img-wrap:hover img {
  transform: scale(1.1);
}
.concept_img_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.concept_img_wrap img {
  width: 90%;
}
.concept_img_wrap .tip {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 255px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.4);
}
.concept_img_wrap .tip h3 {
  margin-bottom: 15px;
}
.concept_img_wrap .tip p {
  line-height: 28px;
  text-align: justify;
}
.guarantee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  margin-bottom: 50px;
}
.guarantee .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  cursor: pointer;
}
.guarantee .item p {
  color: var(--main-color);
  margin-top: 15px;
}
.guarantee .item i {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #cccccc;
}
.guarantee .item i:after {
  content: '';
  position: absolute;
  top: -7px;
  left: -6px;
  width: 110px;
  height: 110px;
  border: 1px dashed transparent;
  border-top-color: var(--main-color);
  border-left-color: var(--main-color);
  transform: rotate(45deg);
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.guarantee .item:hover {
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.guarantee .item:hover img {
  transform: scale(1.1);
}
.staff {
  display: flex;
  width: 100%;
  background-color: #ccc;
}
.staff .content {
  width: 50%;
  padding: 30px;
}
.staff .content h3 {
  color: var(--main-color);
  margin-bottom: 30px;
}
.staff .content p {
  line-height: 30px;
  text-align: justify;
}
.staff img {
  width: 50%;
  object-fit: cover;
}
.recruit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.recruit .recruit_item {
  position: relative;
  padding: 20px;
  border-top: 2px solid #ccc;
  cursor: pointer;
}
.recruit .recruit_item .title {
  margin-bottom: 10px;
}
.recruit .recruit_item span {
  display: block;
  color: #999;
  margin-bottom: 5px;
  font-size: 15px;
}
.recruit .recruit_item p {
  margin-bottom: 5px;
  font-size: 15px;
}
.recruit .recruit_item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
}
.recruit .recruit_item:hover {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.recruit .recruit_item:hover::before {
  width: 100%;
  transition: all 0.3s linear;
}
.recruit .recruit_item .description {
  margin-top: 20px;
}
.recruit .recruit_item .description .content {
  width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recruit-detail .title {
  padding: 30px;
  border-bottom: 2px solid var(--main-color);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.recruit-detail p {
  margin-bottom: 10px;
}
.recruit-detail .description {
  margin-top: 20px;
}
.recruit-detail .padding {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.contact .item {
  position: relative;
  display: flex;
  height: 300px;
  border-top: 2px solid #000;
  transition: all 0.2s linear;
  margin-bottom: 20px;
  cursor: pointer;
}
.contact .item img {
  width: 50%;
  object-fit: cover;
  transition: all 0.2s linear;
}
.contact .item .content {
  flex: 1;
  padding: 20px;
  transition: all 0.2s linear;
}
.contact .item .content h3 {
  padding-left: 31px;
  margin-bottom: 20px;
}
.contact .item .content p {
  font-size: 18px;
}
.contact .item:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.5s linear;
}
.contact .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.contact .item:hover {
  padding: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.contact .item:hover:nth-child(2n) .content {
  padding-left: 0;
}
.contact .item:hover:before {
  width: 100%;
}
