
/*>>>>>>>>>>>>>>>>>>>>>>>>-  load animated  -<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

/* ==>>  z-icon-spinner  下横线 */
/*  html 标签 ：
    <div class="z-icon-spinner"> <div class="rect1"></div> <div class="rect2"></div> <div class="rect3"></div> <div class="rect4"></div> <div class="rect5"></div> </div>
*/
.z-icon-spinner {
    width: 80px;
    height: 90px;
    text-align: center;
    font-size: 10px;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.z-icon-spinner > div {
    display: inline-block;
    width: 6px;
    height: 100%;
    margin: 0 2px;
    background-color: #67CF22;
    -webkit-animation: z-icon-spinner 1.2s infinite ease-in-out;
    animation: z-icon-spinner 1.2s infinite ease-in-out;
}

.z-icon-spinner .rect2 {  -webkit-animation-delay: -1.1s;  animation-delay: -1.1s; }
.z-icon-spinner .rect3 {  -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }
.z-icon-spinner .rect4 {  -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
.z-icon-spinner .rect5 {  -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }

@-webkit-keyframes z-icon-spinner {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}
@keyframes z-icon-spinner {
    0%, 40%, 100% {  transform: scaleY(0.4);  -webkit-transform: scaleY(0.4);  }
    20% {  transform: scaleY(1.0);  -webkit-transform: scaleY(1.0);  }
}

/* ==>>  z-icon-flipping  */
/*  html 标签 ：
    <div class="z-icon-flipping"></div>
*/
.z-icon-flipping {
    width: 80px;
    height: 80px;
    background-color: #67CF22;
    -webkit-animation: z-icon-flipping 1.2s infinite ease-in-out;
    animation: z-icon-flipping 1.2s infinite ease-in-out;
}
@-webkit-keyframes z-icon-flipping {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}
@keyframes z-icon-flipping {
    0% {  transform: perspective(120px) rotateX(0deg) rotateY(0deg);  -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);  }
    50% {  transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);  -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);  }
    100% {  transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);  -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}


/* ==>>  z-icon-rotateBlock  */
/*  html 标签 ：
     <div class="z-icon-rotateBlock"> <div class="cube1"></div> <div class="cube2"></div> </div>
*/
.z-icon-rotateBlock {
    width: 32px;
    height: 32px;
    position: relative;
}
.z-icon-rotateBlock > div{
    background-color: #67CF22;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: z-icon-rotateBlock 1.8s infinite ease-in-out;
    animation: z-icon-rotateBlock 1.8s infinite ease-in-out;
}
.z-icon-rotateBlock .cube2 {  -webkit-animation-delay: -0.9s;  animation-delay: -0.9s;  }

@-webkit-keyframes z-icon-rotateBlock {
    25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
    50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
    75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
    100% { -webkit-transform: rotate(-360deg) }
}
@keyframes z-icon-rotateBlock {
    25% {  transform: translateX(42px) rotate(-90deg) scale(0.5);  -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);  }
    50% {  transform: translateX(42px) translateY(42px) rotate(-179deg);  -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);  }
    50.1% {  transform: translateX(42px) translateY(42px) rotate(-180deg);  -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);  }
    75% {  transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);  -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);  }
    100% {  transform: rotate(-360deg);  -webkit-transform: rotate(-360deg);  }
}



/* ==>>  z-icon-rotateBlock  */
/*  html 标签 ：
    <div class="z-icon-cubeGrid"> <div class="sk-cube sk-cube1"></div> <div class="sk-cube sk-cube2"></div> <div class="sk-cube sk-cube3"></div> <div class="sk-cube sk-cube4"></div> <div class="sk-cube sk-cube5"></div> <div class="sk-cube sk-cube6"></div> <div class="sk-cube sk-cube7"></div> <div class="sk-cube sk-cube8"></div> <div class="sk-cube sk-cube9"></div> </div>
*/
.z-icon-cubeGrid {
    width: 100px;
    height: 100px;
}
.z-icon-cubeGrid .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #67CF22;
    float: left;
    -webkit-animation: z-icon-cubeGrid 1.3s infinite ease-in-out;
    animation: z-icon-cubeGrid 1.3s infinite ease-in-out;
}
.z-icon-cubeGrid .sk-cube1 {  -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.z-icon-cubeGrid .sk-cube2 {  -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.z-icon-cubeGrid .sk-cube3 {  -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.z-icon-cubeGrid .sk-cube4 {  -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.z-icon-cubeGrid .sk-cube5 {  -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.z-icon-cubeGrid .sk-cube6 {  -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.z-icon-cubeGrid .sk-cube7 {  -webkit-animation-delay: 0.0s; animation-delay: 0.0s; }
.z-icon-cubeGrid .sk-cube8 {  -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.z-icon-cubeGrid .sk-cube9 {  -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }

@-webkit-keyframes z-icon-cubeGrid {
    0%, 70%, 100% { -webkit-transform: scale3D(1, 1, 1); transform: scale3D(1, 1, 1); }
    35% { -webkit-transform: scale3D(0, 0, 1); transform: scale3D(0, 0, 1); } }

@keyframes z-icon-cubeGrid {
    0%, 70%, 100% { -webkit-transform: scale3D(1, 1, 1); transform: scale3D(1, 1, 1); }
    35% { -webkit-transform: scale3D(0, 0, 1); transform: scale3D(0, 0, 1); }
}



/* ==>>  z-icon-foldingCube  */
/*  html 标签 ：
   <div class="z-icon-foldingCube"> <div class="sk-cube1 sk-cube"></div> <div class="sk-cube2 sk-cube"></div> <div class="sk-cube4 sk-cube"></div> <div class="sk-cube3 sk-cube"></div> </div>
*/
.z-icon-foldingCube {
    width: 80px;
    height: 80px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.z-icon-foldingCube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.z-icon-foldingCube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #67CF22;

    -webkit-animation: z-icon-foldingCube 2.4s infinite linear both;
    animation: z-icon-foldingCube 2.4s infinite linear both;

    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.z-icon-foldingCube .sk-cube2 { -webkit-transform: scale(1.1) rotateZ(90deg); transform: scale(1.1) rotateZ(90deg); }
.z-icon-foldingCube .sk-cube3 { -webkit-transform: scale(1.1) rotateZ(180deg); transform: scale(1.1) rotateZ(180deg); }
.z-icon-foldingCube .sk-cube4 { -webkit-transform: scale(1.1) rotateZ(270deg); transform: scale(1.1) rotateZ(270deg); }
.z-icon-foldingCube .sk-cube2:before { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.z-icon-foldingCube .sk-cube3:before { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.z-icon-foldingCube .sk-cube4:before { -webkit-animation-delay: 0.9s; animation-delay: 0.9s; }

@-webkit-keyframes z-icon-foldingCube {
    0%, 10% {  -webkit-transform: perspective(140px) rotateX(-180deg); transform: perspective(140px) rotateX(-180deg); opacity: 0; }
    25%, 75% {  -webkit-transform: perspective(140px) rotateX(0deg); transform: perspective(140px) rotateX(0deg); opacity: 1; }
    90%, 100% {  -webkit-transform: perspective(140px) rotateY(180deg); transform: perspective(140px) rotateY(180deg); opacity: 0; }
}

@keyframes z-icon-foldingCube {
    0%, 10% { -webkit-transform: perspective(140px) rotateX(-180deg);  transform: perspective(140px) rotateX(-180deg); opacity: 0; }
    25%, 75% { -webkit-transform: perspective(140px) rotateX(0deg); transform: perspective(140px) rotateX(0deg); opacity: 1; }
    90%, 100% { -webkit-transform: perspective(140px) rotateY(180deg); transform: perspective(140px) rotateY(180deg); opacity: 0; }
}


/* ==>>  z-icon-doughnut  */
/*  html 标签 ：
   <div class="z-icon-doughnut"> <div class="z-icon-dou icon-dou1"> <div class="circle1"></div> <div class="circle2"></div> <div class="circle3"></div> <div class="circle4"></div> </div> <div class="z-icon-dou icon-dou2"> <div class="circle1"></div> <div class="circle2"></div> <div class="circle3"></div> <div class="circle4"></div> </div> <div class="z-icon-dou icon-dou3"> <div class="circle1"></div> <div class="circle2"></div> <div class="circle3"></div> <div class="circle4"></div> </div> </div>
*/

.z-icon-doughnut {
    width: 60px;
    height: 60px;
    position: relative;
}
.z-icon-doughnut .z-icon-dou > div {
    width: 12px;
    height: 12px;
    background-color: #67CF22;
    border-radius: 100%;
    position: absolute;

    -webkit-animation: z-icon-doughnut 1.2s infinite ease-in-out;
    animation: z-icon-doughnut 1.2s infinite ease-in-out;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.z-icon-doughnut .z-icon-dou{
    position: absolute;
    width: 100%;
    height: 100%;
}

.z-icon-doughnut .icon-dou1{ -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg); }
.z-icon-doughnut .icon-dou2{ -webkit-transform: rotateZ(45deg); transform: rotateZ(45deg); }

.z-icon-doughnut .icon-dou3{ -webkit-transform: rotateZ(90deg); transform: rotateZ(90deg); }

.z-icon-doughnut .circle1 { top: 0; left: 0; }
.z-icon-doughnut .circle2 { top: 0; right: 0; }
.z-icon-doughnut .circle3 { right: 0; bottom: 0; }
.z-icon-doughnut .circle4 { left: 0; bottom: 0; }

.z-icon-doughnut .icon-dou2 .circle1 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; }
.z-icon-doughnut .icon-dou3 .circle1 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }

.z-icon-doughnut .icon-dou1 .circle2 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
.z-icon-doughnut .icon-dou2 .circle2 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }
.z-icon-doughnut .icon-dou3 .circle2 { -webkit-animation-delay: -0.7s; animation-delay: -0.7s; }

.z-icon-doughnut .icon-dou1 .circle3 { -webkit-animation-delay: -0.6s; animation-delay: -0.6s; }
.z-icon-doughnut .icon-dou2 .circle3 { -webkit-animation-delay: -0.5s; animation-delay: -0.5s; }
.z-icon-doughnut .icon-dou3 .circle3 { -webkit-animation-delay: -0.4s; animation-delay: -0.4s; }

.z-icon-doughnut .icon-dou1 .circle4 { -webkit-animation-delay: -0.3s; animation-delay: -0.3s; }
.z-icon-doughnut .icon-dou2 .circle4 { -webkit-animation-delay: -0.2s; animation-delay: -0.2s;  }
.z-icon-doughnut .icon-dou3 .circle4 { -webkit-animation-delay: -0.1s; animation-delay: -0.1s; }

@-webkit-keyframes z-icon-doughnut {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes z-icon-doughnut {
    0%, 80%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0); }
    40% { transform: scale(1.0); -webkit-transform: scale(1.0); }
}



/* ==>>  z-lever  */
.z-lever{
    display: inline-block;
    position: relative;
    cursor: default;
}
.z-lever:after{
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #1b15ac;
    position: absolute;
    left: 0;
    bottom:0;

    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;

    -webkit-transition-timing-function: cubic-bezier(.77,0,.175,1);
    -moz-transition-timing-function: cubic-bezier(.77,0,.175,1);
    -ms-transition-timing-function: cubic-bezier(.77,0,.175,1);
    -o-transition-timing-function: cubic-bezier(.77,0,.175,1);
    transition-timing-function: cubic-bezier(.77,0,.175,1);
}

.z-lever.z-leverC:after{
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);

    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -ms-transition-property: transform;
    -o-transition-property: transform;
    transition-property: transform;
}
.z-lever.z-leverC:hover:after{
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.z-lever.z-leverL:after{
    width: 0;
    left: auto;
    right: 0;
    -webkit-transition-property: width;
    -moz-transition-property: width;
    -ms-transition-property: width;
    -o-transition-property: width;
    transition-property: width;
}
.z-lever.z-leverL:hover:after{
    width: 100%;
    right: auto;
    left: 0;
}
.z-lever.z-leverR:after{
    width: 0;
    right: auto;
    left: 0;
    -webkit-transition-property: width;
    -moz-transition-property: width;
    -ms-transition-property: width;
    -o-transition-property: width;
    transition-property: width;
}
.z-lever.z-leverR:hover:after{
    width: 100%;
    left: auto;
    right: 0;
}


/* ==>>  z-hoverBorder #悬停边框  */
.z-wrapBoxLine {
    text-decoration:none;
    position:relative;
}
.z-wrapBoxLine:after {
    content:'';
    display:block;
    position:absolute;
}
.z-wrapBoxLine:before {
    content:'';
    display:block;
    position:absolute;
}
.z-wrapBoxLine {
    border:0;
}
.z-wrapBoxLine:after,.z-wrapBoxLine:before {
    box-sizing:border-box;
    border:1px solid transparent;
    width:0;
    height:0;
}
.z-wrapBoxLine:after {
    top:0;
    left:0;
    -webkit-transition:border-color 0s ease-in 0.8s,width 0.2s ease-in 0.6s,height 0.2s ease-in 0.4s;
    transition:border-color 0s ease-in 0.8s,width 0.2s ease-in 0.6s,height 0.2s ease-in 0.4s;
}
.z-wrapBoxLine:before {
    bottom:0;
    right:0;
    -webkit-transition:border-color 0s ease-in 0.4s,width 0.2s ease-in 0.2s,height 0.2s ease-in;
    transition:border-color 0s ease-in 0.4s,width 0.2s ease-in 0.2s,height 0.2s ease-in;
}
.z-wrapBoxLine:hover:after,.z-wrapBoxLine:hover:before {
    width:100%;
    height:100%;
}
.z-wrapBoxLine:hover:after {
    border-top-color:#367dff;
    border-right-color:#367dff;
    -webkit-transition:width 0.2s ease-out,height 0.2s ease-out 0.2s;
    transition:width 0.2s ease-out,height 0.2s ease-out 0.2s;
}
.z-wrapBoxLine:hover:before {
    border-bottom-color:#367dff;
    border-left-color:#367dff;
    -webkit-transition:border-color 0s ease-out 0.4s,width 0.2s ease-out 0.4s,height 0.2s ease-out 0.6s;
    transition:border-color 0s ease-out 0.4s,width 0.2s ease-out 0.4s,height 0.2s ease-out 0.6s;
}


/* input 呼吸框 */
.z-fik-inp {
    display: inline-block;
    position: relative;
}
.z-fik-inp .z-ofu{
    content: "";
    display: block;
    width: 100%;

    border: 1px solid #367dff;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;

    -webkit-transform: scale(1.3,1.3);
    -moz-transform: scale(1.3,1.3);
    -ms-transform: scale(1.3,1.3);
    -o-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3);

    opacity: 0;
    filter: Alpha(opacity=0);

    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -ms-transition: all ease 400ms;
    -o-transition: all ease 400ms;
    transition: all ease 400ms;
}
.z-fik-inp input{
    position: relative;
    z-index: 100;
}
.z-fik-inp input:focus + .z-ofu{
    height: 100%;
    top:0;
    margin-top: -1px;
    margin-left: -1px;
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
    filter: Alpha(opacity=100);
}