html,
body,
h1,
h2,
h3,
h4,
div,
p,
span,
ul,
li {
  padding: 0;
  margin: 0;
}
body {
  font-family: "微软雅黑";
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
div,
ul,
li {
  box-sizing: border-box;
}
p {
  line-height: 24px;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: justify;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
img {
  vertical-align: middle;
}
.section1 .text-wrap,
.section2 .doc-wrap,
.section3 .img-wrap,
.section4 .about-wrap,
.foot-wrap,
.home-about {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 30px;
  box-sizing: border-box;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #0072cb;
  letter-spacing: 2px;
}
.head-wrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .logo {
  flex: 0 0 331px;
  color: #fff;
}
header .logo img {
  width: 100%;
}
header ul.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 100px;
}
header ul.nav li {
  position: relative;
  width: 160px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
}
header ul.nav a {
  display: block;
  width: 100%;
  height: 100%;
}
header ul.nav > li:hover {
  background-color: #2dadff;
}
header ul.nav > li:hover .navlist {
  display: block;
}
header ul.nav a {
  color: #fff;
}
header .navlist {
  display: none;
  position: absolute;
  top: 45px;
  left: 30px;
  border-radius: 4px;
  background-color: #2dadff;
}
header .navlist li:hover {
  background-color: #0072cb;
}
#fontFamily,
#enfontFamily {
  border: none;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  background-color: #0072cb;
  cursor: pointer;
  color: #fff;
  outline: none;
}
#fontFamily:hover,
#enfontFamily:hover {
  background-color: #2dadff;
}

.arial {
  font-family: Arial;
}
/* 漂浮窗 */
.side-right {
  position: fixed;
  top: 30%;
  right: -120px;
  z-index: 99999;
  transition: all 1s;
}
.side-right ul {
}
.side-right li {
  height: 53px;
  overflow: hidden;
  transition: all 1s;
}
.side-right:hover {
  right: 0;
}
.side-right:hover li {
  height: auto;
}
.side-right li:nth-child(2) {
  margin: 6px 0;
}
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background-color: #383838;
  padding-bottom: 20px;
}
.foot-wrap {
  display: flex;
}
.foot-wrap > div {
  flex: 1;
}
.foot-wrap ul {
  display: flex;
  justify-content: space-around;
  flex: 1;
}
footer p,
footer a {
  font-size: 14px;
  color: #fff;
  width: 100%;
  text-align: left;
}
footer a {
  display: block;
}
footer li a {
  font-size: 18px;
}
footer li a:hover {
  color: #0072cb;
}
/* 加载动画 */
.loading {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  background-color: #fff;
  opacity: 1;
}
.loading-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#circle {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  border: 5px white solid;
  border-left-color: #ff5500;
  border-right-color: #0c80fe;
  border-radius: 100%;
  animation: loading1 1s infinite linear;
}

@keyframes loading1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* 公共的 */
.section1 {
  background: url(../images/home/section2.jpg);
  background-size: 100% 100%;
}
.section1 .text-wrap {
  width: 1096px;
  transform: scale(0, 0);
  transition: all 1s;
  transition-delay: 0.3s;
}
.section1 .text-wrap.active {
  transform: scale(1, 1);
}
.section2 {
  background: url(../images/home/section3.jpg) no-repeat;
  background-size: cover;
}
.section2 .doc-wrap {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 70px 20px 60px 30px;
}
.section2 h2 {
  font-size: 52px;
  color: #0072cb;
  display: flex;
  align-items: baseline;
  transform: translateX(-110%);
}
.section2.active h2 {
  animation: title 0.5s linear forwards;
}
.section2 h2 p {
  font-size: 34px;
  color: #333;
  font-weight: normal;
  margin-left: 10px;
  transform: translateX(-600px);
}
.section2.active h2 p {
  animation: stitle 0.5s linear forwards;
  animation-delay: 0.5s;
}
.section2 hr {
  display: inline-block;
  width: 0;
  background-color: #8d8d8d;
  outline: none;
  height: 2px;
  border: none;
}
.section2.active hr {
  animation: hr 1.6s linear forwards;
  animation-delay: 1s;
}
.service-list {
  display: flex;
  width: 100%;
  margin-top: 30px;
}
.service-list li {
  position: relative;
  width: 33.33%;
  text-align: center;
}
.service-list li.border::before {
  position: absolute;
  right: 0;
  top: 20px;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #8d8d8d;
}
.service-list .service01 {
  left: -450px;
}
.service-list .service02 {
  left: -800px;
}
.service-list .service03 {
  left: -1200px;
}
.section2.active .service-list .service01 {
  animation: service01 0.4s linear forwards;
  animation-delay: 1s;
}
.section2.active .service-list .service02 {
  animation: service02 0.8s linear forwards;
  animation-delay: 1.2s;
}
.section2.active .service-list .service03 {
  animation: service03 1.2s linear forwards;
  animation-delay: 1.4s;
}
.service-list li h3 {
  font-size: 18px;
  font-weight: normal;
  color: #0072cb;
  margin-bottom: 10px;
}
.service-list li p {
  display: inline-block;
  height: 255px;
  width: 266px;
  color: #333;
  font-size: 16px;
  padding-left: 20px;
}
.service-list li p i {
  margin-left: -20px;
  font-style: normal;
}
.service-list li p span {
  color: #0072cb;
}
.service-list li .number {
  width: 220px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #0072cb;
  display: inline-block;
}

.section3 {
  background: url(../images/home/section4.jpg) no-repeat;
  background-size: cover;
}
.section3 .img-wrap {
  display: flex;
  color: #fff;
}
.section3 .img-wrap a {
  color: #fff;
}
.section3 .img-l {
  flex: 0 0 405px;
}
.section3 .imgl-top {
  background-color: #0072cb;
  height: 400px;
  padding: 60px 20px 0;
  transform: translate(-100%, -100%);
}
.section3 .imglt-active {
  animation: imglt 0.5s linear forwards;
}
.section3 .imglb-active {
  animation: imglb 0.5s linear forwards;
  animation-delay: 0.5s;
}
.section3 .img-l h3 {
  font-weight: normal;
  font-size: 20px;
}
.section3 .imgl-top p {
  font-size: 16px;
  letter-spacing: 0;
  margin: 40px 0;
}
.img-l .imgl-top a {
  display: block;
  font-size: 14px;
  text-align: center;
  width: 120px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #fff;
}
.img-l .imgl-top a:hover {
  background-color: #fff;
  color: #0072cb;
}
.img-l .imgl-bot {
  position: relative;
  width: 100%;
  height: 200px;
  background: url(../images/home/10.jpg) no-repeat;
  background-size: 100% 100%;
  transform: translate(-100%, 100%);
}
.mask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(0, 114, 203, 0.7);
}
.imgl-bot:hover .mask {
  display: block;
}
.imgl-bot:hover > span {
  display: none;
}
.mask .border {
  width: 100%;
  height: 100%;
  border: 1px solid #afddfa;
  padding: 50px 0;
}
.mask hr {
  border: none;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
}
.mask h4,
.mask p {
  text-align: center;
}
.mask h4 {
  margin: 24px 0;
}
.section3 .mask p {
  margin: 0;
  margin-bottom: 24px;
}
.section3 .img-r {
  display: flex;
  flex-wrap: wrap;
}
.section3 .img-r a {
  display: block;
}
.section3 a.active .mask {
  display: block;
}
.section3 a.active span {
  display: none;
}
.section3 .img-r .item {
  position: relative;
  width: 265px;
  height: 200px;
}
.section3 .item > span,
.imgl-bot > span {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.section3 .img-r .item:hover .mask {
  display: block;
}
.section3 .img-r .item:hover > span {
  display: none;
}
.section3 .item1 {
  background: url(../images/home/1.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item2 {
  background: url(../images/home/2.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item3 {
  background: url(../images/home/3.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item4 {
  background: url(../images/home/4.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item5 {
  background: url(../images/home/5.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item6 {
  background: url(../images/home/6.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item7 {
  background: url(../images/home/7.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item8 {
  background: url(../images/home/8.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item9 {
  background: url(../images/home/9.jpg) no-repeat;
  background-size: 100% 100%;
}
.section3 .item1,
.section3 .item4,
.section3 .item7 {
  transform: translateX(300%);
}
.section3 .item2,
.section3 .item5,
.section3 .item8 {
  transform: translateX(200%);
}
.section3 .item3,
.section3 .item6,
.section3 .item9 {
  transform: translateX(100%);
}
.section3 .item-active1 {
  animation: imgr1 0.5s linear forwards;
  animation-delay: 1s;
}
.section3 .item-active2 {
  animation: imgr2 0.5s linear forwards;
  animation-delay: 1.5s;
}
.section3 .item-active3 {
  animation: imgr3 0.5s linear forwards;
  animation-delay: 2s;
}
.section3 .item-active4 {
  animation: imgr4 0.5s linear forwards;
  animation-delay: 2.5s;
}
.section3 .item-active5 {
  animation: imgr5 0.5s linear forwards;
  animation-delay: 3s;
}
.section3 .item-active6 {
  animation: imgr6 0.5s linear forwards;
  animation-delay: 3.5s;
}
.section3 .item-active7 {
  animation: imgr7 0.5s linear forwards;
  animation-delay: 4s;
}
.section3 .item-active8 {
  animation: imgr8 0.5s linear forwards;
  animation-delay: 4.5s;
}
.section3 .item-active9 {
  animation: imgr9 0.5s linear forwards;
  animation-delay: 5s;
}
.section4 {
  background: url(../images/home/section5.jpg) no-repeat;
  background-size: cover;
}
.home-about {
  position: relative;
  width: 934px;
  height: 467px;
  overflow: visible;
}
.abour-bg {
  position: absolute;
  right: -120%;
  bottom: -120%;
  width: 100%;
  height: 100%;
  background: url(../images/home/aboutwe.png) no-repeat;
  background-size: cover;
}
.abour-bg.active {
  animation: aboutbg 0.3s linear forwards;
}
.about-border {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 467px;
  border: 1px dashed #fff;
}
.about-border.active {
  animation: aboutbor.4s linear forwards;
  animation-delay: 0.3s;
}
.about-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 88px;
}
.about-swiper .swiper-container {
  width: 100%;
  height: auto;
}
.about-swiper .swiper-slide {
  text-align: center;
}
.about-swiper h2 {
  position: relative;
  z-index: 9;
  font-size: 32px;
  color: #338ed5;
  width: 100%;
  text-align: center;
}
.about-swiper .swiper-slide h3 {
  font-size: 28px;
  color: #333;
  font-weight: normal;
  margin-bottom: 30px;
  padding-top: 55px;
}
.about-swiper .swiper-slide p {
  width: 660px;
  text-align: left;
  margin: 0 auto;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 32px;
  transition: all 0.6s;
  transition-delay: 0.2s;
  transform: scale(0);
}
.about-swiper .swiper-slide-active p {
  transform: scale(1);
}
.about-swiper .swiper-button-prev,
.about-swiper .swiper-container-rtl .swiper-button-next {
  outline: none;
}
.about-swiper .swiper-button-next,
.about-swiper .swiper-button-prev {
  width: 54px;
  height: 88px;
  background-size: 54px 88px;
  margin-top: -44px;
}
.about-swiper .swiper-button-next {
  background-image: url(../images/home/next.png);
  right: 60px;
  opacity: 0;
}
.about-swiper.active .swiper-button-next {
  animation: next.5s linear forwards;
  animation-delay: 0.3s;
}
.about-swiper .swiper-button-prev {
  background-image: url(../images/home/prev.png);
  left: 60px;
  opacity: 0;
}
.about-swiper.active .swiper-button-prev {
  animation: prev.5s linear forwards;
  animation-delay: 0.3s;
}

/* 服务 */
.ser_main .swiper-button-next,
.ser_main .swiper-button-prev {
  width: 54px;
  height: 88px;
  background-size: 54px 88px;
  outline: none;
}
.ser_main .swiper-button-prev {
  left: 80px;
}
.ser_main .swiper-button-next {
  right: 80px;
}
.section-swiper .swiper-slide {
  position: relative;
}
.ser_main a.w1200 {
  display: block;
  margin: 30px auto 0;
  width: 1200px;
}
.ser_main img {
  width: 100%;
}
.section-swiper .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1200px;
}
.section-swiper .swiper-container,
.section-swiper a {
  width: 100%;
  height: 100%;
}
.section-swiper a {
  display: block;
  margin: 0;
}
.section-swiper .swiper-pagination {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.section-swiper
  .swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 5px 0;
}
.section-swiper .swiper-container-horizontal > .swiper-pagination-bullets,
.section-swiper .swiper-pagination-custom,
.section-swiper .swiper-pagination-fraction {
  top: 20%;
  left: 140px;
  width: 60px;
  height: 500px;
}
.section-swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 70px;
  height: 70px;
}
.section-swiper .swiper-pagination-bullet-active {
  background: url(../31.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(1) {
  background: url(../images/service/btn1.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(2) {
  background: url(../images/service/btn2.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(3) {
  background: url(../images/service/btn3.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(4) {
  background: url(../images/service/btn4.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(5) {
  background: url(../images/service/btn5.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(6) {
  background: url(../images/service/btn6.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active {
  background: url(../images/service/btnac1.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active {
  background: url(../images/service/btnac2.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active {
  background: url(../images/service/btnac3.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active {
  background: url(../images/service/btnac4.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active {
  background: url(../images/service/btnac5.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(6).swiper-pagination-bullet-active {
  background: url(../images/service/btnac6.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(1).cn {
  background: url(../images/service/btn1.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(2).cn {
  background: url(../images/service/btnZ2.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(3).cn {
  background: url(../images/service/btnZ3.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(4).cn {
  background: url(../images/service/btnZ4.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(5).cn {
  background: url(../images/service/btnZ5.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(6).cn {
  background: url(../images/service/btnZ6.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnac1.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnacZ2.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnacZ3.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnacZ4.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnacZ5.png) no-repeat;
  background-size: 100% 100%;
}
.section-swiper
  .swiper-pagination
  > span.swiper-pagination-bullet:nth-of-type(6).swiper-pagination-bullet-active.cn {
  background: url(../images/service/btnacZ6.png) no-repeat;
  background-size: 100% 100%;
}
.shubiao {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: block;
  width: 37px;
  height: 62px;
  cursor: pointer;
  animation: shubiao 1.5s infinite;
}
.serv-slide1 {
  background: url(../images/service/firm1.jpg) no-repeat;
  background-size: 100% 100%;
}
.serv-slide2 {
  background: url(../images/service/firm2.jpg) no-repeat;
  background-size: 100% 100%;
}
.serv-slide3 {
  background: url(../images/service/firm3.jpg) no-repeat;
  background-size: 100% 100%;
}
.serv-slide4 {
  background: url(../images/service/firm4.jpg) no-repeat;
  background-size: 100% 100%;
}
.serv-slide5 {
  background: url(../images/service/firm5.jpg) no-repeat;
  background-size: 100% 100%;
}
.serv-slide6 {
  background: url(../images/service/firm6.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg2 {
  background: url(../images/service/serv2.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg3 {
  background: url(../images/service/serv3.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg4 {
  background: url(../images/service/serv4.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg5 {
  background: url(../images/service/serv5.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg6 {
  background: url(../images/service/serv6.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg7 {
  background: url(../images/service/serv7.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg8 {
  background: url(../images/service/serv8.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg9 {
  background: url(../images/service/serv9.jpg) no-repeat;
  background-size: 100% 100%;
}
.servbg10 {
  background: url(../images/service/serv10.jpg) no-repeat;
  background-size: 100% 100%;
}

/* 銀行 */
.bank-content,
.bank-targ {
  width: 1200px;
  margin: 0 auto;
}
.bank-targ {
  margin-top: 90px;
}
.bank-targ h1,
.bank-targ p {
  width: 100%;
  text-align: center;
}
.bank-targ h1 {
  font-size: 37px;
  padding-top: 20px;
  letter-spacing: 4px;
}
.bank-targ p {
  font-size: 20px;
  line-height: 30px;
  color: #333;
}
.bank-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.bank-nav {
  flex: 0 0 200px;
  margin-right: 20px;
}
.bank-nav .item {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #2972a7;
  color: #fff;
  margin-bottom: 2px;
  cursor: pointer;
}
.bank-nav .item.active {
  background-color: #1e91e3;
}
.bank-wrap {
  border: 1px solid #ccc;
  background-color: #ccc;
}
.bank-wrap .item {
  display: none;
}
.bank-wrap .item img {
  width: 100%;
  margin-bottom: 20px;
}
/* 聯繫我們 */
.touchsect {
  background: url(../images/other/1034px.jpg) no-repeat;
  background-size: cover;
}
.touchmask {
  position: absolute;
  bottom: 0;
  z-index: 8;
  right: 0;
  background: transparent;
  border-bottom: 950px solid #fff;
  border-left: 350px solid transparent;
  border-right: 0px solid transparent;
  width: 700px;
  height: 100%;
  transform: translateX(100%);
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 300ms;
  -moz-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 300ms;
  -ms-transition: all 1.2s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 300ms;
  -o-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 300ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 300ms;
  transition-duration: 1.2s;
}
.touchmask.active {
  transform: translateX(0);
}
.touch-main {
  position: relative;
  z-index: 9;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.touch-main .touch-us {
  padding-right: 100px;
  text-align: right;
  padding-top: 260px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 600ms;
  transition-delay: 1.2s;
}
.touch-main .touch-us.active {
  opacity: 1;
  transform: translateY(0);
}
.touch-main .touch-us p {
  text-align: right;
  color: #666;
  line-height: 30px;
}
.touch-main .touch-us h3 {
  display: inline-block;
  font-size: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #007cc6;
  color: #333;
}
.touch-main .touch-us p.head {
  margin: 18px 0 30px;
  color: #999;
}
.touch-main .touch-us a {
  color: #666;
}
.touch-main .touch-us hr {
  width: 70%;
  display: inline-block;
}
#dituContent img {
  width: 100%;
}

/* 动画 */
@keyframes service01 {
  from {
    left: -400px;
  }
  to {
    left: 0;
  }
}
@keyframes service02 {
  from {
    left: -800px;
  }
  to {
    left: 0;
  }
}
@keyframes service03 {
  from {
    left: -1200px;
  }
  to {
    left: 0;
  }
}
@keyframes hr {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes stitle {
  from {
    transform: translateX(-600px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes title {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes aboutbg {
  from {
    right: -120%;
    bottom: -120%;
  }
  to {
    right: 0;
    bottom: 0;
  }
}
@keyframes aboutbor {
  from {
    width: 500px;
    height: 467px;
  }
  to {
    width: 700px;
    height: 536px;
  }
}
@keyframes prev {
  from {
    left: 60px;
    opacity: 0;
  }
  to {
    left: 30px;
    opacity: 1;
  }
}
@keyframes next {
  from {
    right: 60px;
    opacity: 0;
  }
  to {
    right: 30px;
    opacity: 1;
  }
}

@keyframes imglt {
  from {
    transform: translate(-100%, -100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imglb {
  from {
    transform: translate(-100%, 100%);
    background-position: -100%, -100%;
  }
  to {
    transform: translate(0, 0);
    position: 0, 0;
  }
}
@keyframes imgr1 {
  from {
    transform: translateX(300%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr2 {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr3 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr4 {
  from {
    transform: translateX(300%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr5 {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr6 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr7 {
  from {
    transform: translateX(300%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr8 {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes imgr9 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes scal {
  from {
    transform: translate(-100%, 100%) scale(0, 0) rotate(360deg);
  }
  to {
    transform: translate(0, 0) scale(1, 1) rotate(0deg);
  }
}
@keyframes shubiao {
  from {
    transform: scale(0, 0);
  }
  to {
    transform: scale(1, 1);
  }
}
