﻿.wyts_head{
    background-color: #367bf0;
    text-align: center;
    /*padding: 50px 0 20px 0;*/
    margin: 0 auto;
}
.wyts{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: url(../img/footerbg.png) no-repeat 0 125%;
}
.wyts .wyheimg{
    padding-top: 40px  ;
}
.wyts .wyheimg:last-child{
    padding-top: 70px;
}
.wyts ul{
    width: 1200px;
    display: flex;
    justify-content: center;
    margin: 30px 0 ;
}
.wyts ul li {
    flex: 1;
    margin-right: 20px;
    background-color: #e4ecff;
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 320px;
}
.wyts ul li:last-child{
    margin-right: 0;
}
.wyts ul li span{
    font-size: 14px;
    line-height: 30px;
    text-indent: 2em;
    word-break:break-all;
    display: inline-block;
    width: 100%;
    text-align: justify;
}
.fangda:nth-child(1) {
    animation: fangda 1s ease 0.1s 1 both;
}
.fangda:nth-child(2) {
    animation: fangda 1s ease 0.5s 1 both;
}
.fangda:nth-child(3) {
    animation: fangda 1s ease 1.0s 1 both;
}
.fangda:nth-child(4) {
    animation: fangda 1s ease 1.5s 1 both;
}
.fangda:nth-child(5) {
    animation: fangda 1s ease 2.0s 1 both;
}
.fangda:nth-child(6) {
    animation: fangda 1s ease 2.5s 1 both;
}
@keyframes fangda {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }
    100% {
        transform: scale(1, 1);
        opacity: 1;
    }
}

.wyts ul li .wytsiocn_hover{
    display: none;
}
.wyts ul li .imgn{
    border-radius: 50%;
    border: 1px solid #367bf0;
    margin: 26px 0;
    padding: 20px;
    width: 50px;
    height: 50px;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.wyts ul li:hover .imgn{
    border: 1px solid white;
}

.wyts ul li:hover{
    background-color: #357ef1;
    color: white;
    box-shadow: 0 5px 10px #cccccc;
}
.wyts ul li:hover .wytsiocn_hover{
    display: block;
}
.wyts ul li:hover .wytsiocn{
    display: none;
}
.wyts ul li:hover p{
    color: white;
    border-color: white;
}
.wyts ul li:hover img{
    border-color: white;
}
.wyts ul li p{
    font-size: 24px;
    color: #367bf0;
    line-height: 60px;
    border-bottom: 1px solid #367bf0;
    text-align: center;
    width: 100%;
}

.sumbtn{
    margin: 66px auto;
    font-size: 26px;
    font-weight: bold;
    color: #357ef1;
    line-height: 76px;
    height: 76px;
    padding:  0 70px;
    border: 2px solid #257ef1;
    border-radius: 100px;
    letter-spacing: 5px;
    cursor: pointer;
}
.sumbtn:hover{
    background-image: -moz-linear-gradient( 100deg, rgb(33,108,234) 0%, rgb(41,129,245) 73%, rgb(48,150,255) 100%);
    background-image: -webkit-linear-gradient( 100deg, rgb(33,108,234) 0%, rgb(41,129,245) 73%, rgb(48,150,255) 100%);
    background-image: -ms-linear-gradient( 100deg, rgb(33,108,234) 0%, rgb(41,129,245) 73%, rgb(48,150,255) 100%);
    color: white;
    box-shadow: 0 4px 12px 0 rgba(48,150,255, 0.8)
}