
/*---------------------
  产品板块
-----------------------*/
.operate {
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding-bottom: 68px;
}

.operate .section-title {
    text-align: center;
    padding-top: 0px;
    margin-bottom: 0px;
}
.operate .section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}
.section-title p {
    font-size: 16px;
    color: #95989d;
    width: 100%;
    margin: 0 auto;
}
.operate .list1 ul li {
    list-style: none;
    float: left;
    width: 335px;
    margin-right: 30px;
    text-align: center;
    background: #fff;
    padding-bottom: 38px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0600);
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
    border-radius: 10px;
}
.operate .list1 ul li p:nth-child(2) {
    font-size: 20px;
    font-weight: bold;
    color: rgba(51,51,51,1);
    line-height: 48px;
}
.operate .list1 ul li p:nth-child(3) {
    font-size: 14px;
    color: #888888;
    line-height: 24px;
    padding: 0 10px;
}
.operate .list1 ul li:last-child {
    margin-right: 0;
}
/*.operate .list1 ul li a {
    display: block;
    width: 180px;
    height: 44px;
    background: #3da1f9;
    background: -moz-linear-gradient(45deg, #3da1f9 0%, #4c57d6 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #3da1f9), color-stop(100%, #4c57d6));
    background: -webkit-linear-gradient(45deg, #3da1f9 0%, #4c57d6 100%);
    background: -o-linear-gradient(45deg, #3da1f9 0%, #4c57d6 100%);
    background: -ms-linear-gradient(45deg, #3da1f9 0%, #4c57d6 100%);
    background: linear-gradient(45deg, #3da1f9 0%, #4c57d6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3da1f9', endColorstr='#ff6c55', GradientType=1 );
    box-shadow: 0 3px 10px 0 #3da1f9;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(243,243,248,1);
    line-height: 44px;
    text-align: center;
    margin: 24px auto 0;
}*/
.operate .list1 ul li .a1 {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 44px;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(243,243,248,1);
    line-height: 44px;
    text-align: center;
    margin: 24px auto 0;
    background: linear-gradient(-45deg, #EE7752, #893ce7, #b62222, #4c57d6);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}
.operate .list1 ul li .a2 {
    text-decoration: none;
    display: block;
    width: 50%;
    height: 44px;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(243,243,248,1);
    line-height: 44px;
    text-align: center;
    margin: 24px auto 0;
    background: linear-gradient(-45deg, #EE7752,#8100d3, #0956fc);
    background-size: 200% 200%;
    -webkit-animation: Gradient 10s ease infinite;
    -moz-animation: Gradient 10s ease infinite;
    animation: Gradient 10s ease infinite;
}
.operate .list1 ul li:hover{
    transform: scale(1.1);
    transition: all 500ms linear;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}