body {
  height: 100%;
  /* 背景渐变 */
  background: linear-gradient(200deg,#f2f3d6,#faaca8);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  }

  *{
    margin:0;
    padding:0;
    box-sizing: border-box;
  }


  .hilight{
    color: #478480;
    color: #ca4701;
    font-weight: bold;
    z-index: 90;
    box-shadow: 0 0 0 5px #ff550080;
  }




.containertop{
  width: 100%;
  height: 70px;
  line-height: 70px;
  top: 0px;
  z-index: 5;
  background-color: rgb(112, 147, 158);
  display: flex;
  position: fixed;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: sticky top;
  box-shadow: 0 10px 50px #fbffe7;
}

.link{
  background-color:rgb(124, 206, 206);
  color: white;
  margin: 5px;
  font-weight: bold;
  font-size: 1.5em;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

a:link {text-decoration:none;}
















.cantsee{
  height: 100px;
}

.all{
  flex-direction: column;
}


.whitebox{
  width: 90vw;
  background: #ffffff;
  display: flex;
  border-radius: 40px;
  justify-content: center; 
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
}

.pinkbox{
  top: 30px;
  width: 95%;
  margin: 10px;
  display: flex;
  border-radius: 25px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.rightbox{
  height: 32vh;
  margin: 10px;
  display: flex;

  top: 20%;
  left: 10%;
  width: 220px;
  z-index:2;
}

.leftbox{
  width: 60%;
  margin: 10px;
  display: flex;
  align-items: center;

}

.wordbox{
  width: 90%;
  margin: 20px;
  background: rgba(69, 69, 69, 0.498);
  border: 5px #dfdfdf solid;
  border-radius: 20px;
  display: flex;
}



.cantsee2{
  height: 10px;
}

.picturelink{
  width: 90vw;
  height: 100vh;
  display: flex;
  border-radius: 40px;
  justify-content: center;
}





























/*原理未明，3d旋转导航栏*/
ult {
	/* 让li水平排列 */
	display: flex;
  justify-content: center;
}

ult li {
  display: inline-flex;
	position: relative;
	/* 取消项目编号 就是小黑点 */
	list-style: none;
	width: 10vh;
	height: 50px;
	/* 让鼠标变成小手 */
	cursor: pointer;
	/* 让子元素保留其3D位置 */
	transform-style: preserve-3d;
	transition: all 1s;
}
ult li:hover {
	transform: rotateX(90deg);
}
ult li:hover div:first-child {
	background-color: #63aba6;
	background-size: 5px 5px;
	background-position: 30px 30px;
	background-image: linear-gradient(
		45deg,
		#6cbdb8 25%,
		rgba(0, 0, 0, 0) 25%,
		rgba(0, 0, 0, 0) 75%,
		#478480 75%,
		#478480
	);
}
ult li div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
ult li div:first-child {
	background-color: #74adaa;
	transform: translateZ(25px);
}
ult li div:last-child {
	background-color: #51938f;
	background-size: 5px 5px;
	background-position: 30px 30px;
	background-image: linear-gradient(
		45deg,
		#478480 25%,
		rgba(0, 0, 0, 0) 25%,
		rgba(0, 0, 0, 0) 75%,
		#478480 75%,
		#478480
	);
	/* 让第二个面往下移动25px 沿着X轴旋转-90度 */
	transform: translateY(25px) rotateX(-90deg);
}












/*背景动态*/
/* 背景方块 */
.bg-squares{
  overflow: hidden;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-squares li{
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: -160px;
  /* 执行动画：动画名 时长 线性 无限次播放 */
  animation: square 20s linear infinite;
}
/* 为每一个方块设置不同的位置、大小、动画延迟时间、动画时长、背景色 */
.bg-squares li:nth-child(1){
  left: 10%;
}
.bg-squares li:nth-child(2){
  left: 20%;
  width: 80px;
  height: 80px;
  /* 动画延迟时间 */
  animation-delay: 2s;
  /* 动画时长 */
  animation-duration: 17s;
}
.bg-squares li:nth-child(3){
  left: 25%;
  animation-delay: 4s;
}
.bg-squares li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.25);
  animation-duration: 22s;
}
.bg-squares li:nth-child(5){
  left: 70%;
}
.bg-squares li:nth-child(6){
  left: 80%;
  width: 120px;
  height: 120px;
  background-color: rgba(255,255,255,0.2);
  animation-delay: 3s;
}
.bg-squares li:nth-child(7){
  left: 32%;
  width: 160px;
  height: 160px;
  animation-delay: 7s;
}
.bg-squares li:nth-child(8){
  left: 55%;
  width: 20px;
  height: 20px;
  animation-delay: 15s;
  animation-duration: 40s;
}
.bg-squares li:nth-child(9){
  left: 25%;
  width: 10px;
  height: 10px;
  background-color: rgba(255,255,255,0.3);
  animation-delay: 2s;
  animation-duration: 40s;
}
.bg-squares li:nth-child(10){
  left: 90%;
  width: 160px;
  height: 160px;
  animation-delay: 11s;
}
.container.success h1{
  transform: translateY(75px);
}
.container.success .form{
  opacity: 0;
  visibility: hidden;
}

/* 定义动画 */
@keyframes square {
  0%{
      transform: translateY(0);
  }
  100%{
      transform: translateY(-120vh) rotate(600deg);
  }
}








/*blog介绍内容*/
.coverheader {
  border-radius: 500px;
  border: 10px #fff solid;
  box-shadow: 0 5px 10px #00000065;
}

.shell {
  top:100px;
  width: 90vw;
  height: 80vh;
  position: absolute;
  z-index: 1;
}

.head {
  margin: 10px;
  border-radius: 30px;
  height: 340px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.head::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("16：9夕阳背景.png");
  background-size: cover;
  z-index: -1;
  transform: skewY(-4deg);
  transform-origin: 0 0;
}

.data {
  text-shadow: 0 0 20px #000;
}

.data .title1 {
  color: white;
  font-size: 50px;
  font: 900 40px '';
  margin-bottom: 5px;
  position: relative;
}

.data .title2 {
  color: #fff;
  font: 500 15px '';
}

.foot {
  line-height: 26px;
  color: #ffffff;
  font: 500 20px '';
  text-shadow: 0 0 20px #000;
}

.introduce {
  padding: 25px 0 0 35px;
}











/*链接卡片*/
.containerpicture{
  /* 相对定位 */
  position: relative;
  /* 弹性布局 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 允许换行 */
  flex-wrap: wrap;
  padding: 30px;
}
.containerpicture .card{
  position: relative;
  max-width: 300px;
  height: 215px;
  background-color: #fff;
  margin: 30px 15px;
  padding: 20px 15px;
  border-radius: 5px;
  /* 阴影 */
  box-shadow: 0 5px 200px rgba(0,0,0,0.5);
  /* 动画过渡 */
  transition: 0.3s ease-in-out;
}
.containerpicture .card:hover{
  
  height: 420px;
}
.containerpicture .card .img-box{
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 5px;
  /* 溢出隐藏 */
  overflow: hidden;
  top: -60px;
  left: 20px;
  /* 阴影 */
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 1;
}
.containerpicture .card .img-box img{
  width: 100%;
}
.containerpicture .card .text-box{
  position: relative;
  margin-top: -140px;
  padding: 10px 15px;
  text-align: center;
  color: #111;
  /* 设置元素不可见 */
  visibility: hidden;
  /* 不透明度 */
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.containerpicture .card .text-box p{
  text-align: left;
  line-height: 25px;
  margin-top: 10px;
  font-size: 15px;
  color: #555;
}

.containerpicture .card:hover .text-box{
  /* 鼠标移入，设置元素可见 */
  visibility: visible;
  opacity: 1;
  margin-top: -40px;
  /* 动画延迟0.2秒 */
  transition-delay: 0.2s;
}











/* 各类社交链接*/
.social-overlap {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.justify-content-center {
  -ms-flex-pack: center!important;
  justify-content: center;
}
.justify-content-center {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}

.social-bar {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 60px rgba(93, 70, 232, 0.15);
border: 1px solid#ebe9e9;
}
.iconpad {
  padding: 12px 0;
  width: 100%;
}
.mb-3, .my-3 {
  margin-bottom: 1rem!important;
}

.process-scetion .slider-nav-item {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: all .4s ease;
}

.social-icons a {
  border-radius: 50px;
  color: #3f345f;
  display: inline-block;
  line-height: 52px;
  height: 50px;
  width: 50px;
  box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
  margin: 15px 15px;
  font-size: 22px;
}

a {
  text-decoration: none !important;
  color: #3f345f;
  transition: all 0.3s ease 0s;
}

.slider-nav-item:before {
  position: absolute;
  content: "";
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1px solid rgba(132, 132, 164, 0.35);
  animation: 1.5s linear 0s normal none infinite focuse;
}



/*socil*/
.slider-nav{
      display: flex;
}

.process-scetion .slider-nav-item {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: all .4s ease;

}
.slider-nav-item:before
{
      position: absolute;
  content: "";
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1px solid rgba(132, 132, 164, 0.35);
  animation: 1.5s linear 0s normal none infinite focuse;
}

  .process-scetion .slider-nav-item:nth-child(2) {
    color: #40beff; }
  .process-scetion .slider-nav-item:nth-child(3) {
    color: #311f9b; }
  .process-scetion .slider-nav-item:nth-child(4) {
    color: #ff9259; }
  .process-scetion .slider-nav-item:nth-child(5) {
    color: #38385f; }
  .process-scetion .slider-nav-item:after {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    content: '';
    width: 100%;
    background: url(http://demo.themenio.com/ico/assets/images/line.png) repeat 0 0;
    z-index: 0;
    animation: slide 1s linear infinite; }
  .process-scetion .slider-nav-item:last-child:after {
    display: none; }
  .process-scetion .slider-nav-item .ikon {
    font-size: 50px;
    line-height: 80px; }


 
    .process-scetion .slider-nav-item.active:before {
      position: absolute;
      content: "";
      height: calc(100% + 16px);
      width: calc(100% + 16px);
      top: -8px;
      left: -8px;
      border-radius: 50%;
      border: 1px solid rgba(132, 132, 164, 0.35);
      animation: 1.5s linear 0s normal none infinite focuse; }

@keyframes focuse {
0% {
  transform: scale(0.8);
  opacity: 1; }
75% {
  transform: scale(1.2);
  opacity: 0; }
100% {
  transform: scale(1.2);
  opacity: 0; } }
@keyframes slide {
from {
  background-position: 0 0; }
to {
  background-position: 40px 0; } }



.slider-nav-item:after {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  content: '';
  width: 100%;
  background: url(https://1.bp.blogspot.com/--Btu5p654jU/XYmrVd5IcYI/AAAAAAAATQ0/4bX8aZyFBgApbJUf90KrpCfO6RvAaZ6LgCLcBGAsYHQ/s1600/line.png) repeat 0 0;
  z-index: 0;
  animation: slide 1s linear infinite;
}
.mt100{margin-top:100px;}



/* ----------------------------------------------
* Generated by Animista on 2019-9-24 11:37:28
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation jello-horizontal
* ----------------------------------------
*/
@-webkit-keyframes jello-horizontal {
0% {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
          transform: scale3d(1.25, 0.75, 1);
}
40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
          transform: scale3d(0.75, 1.25, 1);
}
50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
          transform: scale3d(1.15, 0.85, 1);
}
65% {
  -webkit-transform: scale3d(0.95, 1.05, 1);
          transform: scale3d(0.95, 1.05, 1);
}
75% {
  -webkit-transform: scale3d(1.05, 0.95, 1);
          transform: scale3d(1.05, 0.95, 1);
}
100% {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
}
@keyframes jello-horizontal {
0% {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
          transform: scale3d(1.25, 0.75, 1);
}
40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
          transform: scale3d(0.75, 1.25, 1);
}
50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
          transform: scale3d(1.15, 0.85, 1);
}
65% {
  -webkit-transform: scale3d(0.95, 1.05, 1);
          transform: scale3d(0.95, 1.05, 1);
}
75% {
  -webkit-transform: scale3d(1.05, 0.95, 1);
          transform: scale3d(1.05, 0.95, 1);
}
100% {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
}


.jello-horizontal {
-webkit-animation: jello-horizontal 0.9s both;
        animation: jello-horizontal 0.9s both;
}

.social-bar a:hover i
{
-webkit-animation: jello-horizontal 0.9s both;
        animation: jello-horizontal 0.9s both;
}


@media only screen and (max-width: 300px) {
.process-scetion .slider-nav-item
{
  height: 30px;
  width: 30px;
  margin: 15px 10px;
  line-height: 28px;
}
}


.width{width: 80%;}















/*页面跳转动画*/
divruan{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}


.loading {
  justify-content: center;
  position: fixed;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f3ead8;
  z-index: 100000000;
  transition: 1s ease;
}

.loading svg {
  width: 5rem;
  margin-bottom: 2rem;
  overflow: visible;
  transition: 0.3s ease;
}

.loading svg circle {
  fill: none;
  stroke: #171717;
  stroke-width: 12;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transform-origin: center;
  animation: circle_rotate 3s ease-in infinite;
}

@keyframes circle_rotate {
  0% {
      transform: rotate(0deg);
      stroke-dashoffset: 160;
  }

  100% {
      transform: rotate(360deg);
      stroke-dashoffset: -160;
  }
}

.loading p {
  font-family: sans-serif;
  font-size: 2rem;
  color: #171717;
  font-weight: 900;
  transition: 0.3s ease;
}

.loading_out {
  transform: translateY(100%);
}

.loading_out svg,
.loading_out p {
  opacity: 0;
}