

/*定制专区*/
.cm-banner {
    position: absolute;
    top: 0px;
    width: 1920px;
    z-index: -1;
}
.cm-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
}
.cm-fourth-content,
.cm-fifth-content,
.cm-first-content,
.cm-second-content,
.cm-third-content {
    width: 1200px;
    margin: 0 auto;
}
.cm-first-content,
.cm-second-content,
.cm-third-content {
    display: flex;
    justify-content: space-between;
}
.cm-second-content,
.cm-third-content {
    align-items: center;
}

.cm-first-content {
    margin-bottom: 248px;
}
.cm-second-content {
    margin-bottom: 43px;
}
.cm-third-content {
    margin-bottom: 63px;
}
.cm-fourth-content {
    margin-bottom: 102px;
}
.cm-fifth-content {
    margin-bottom: 72px;
}
/*第一版*/
.cmf-left {
    margin-top: 230px;
}
.cmf-left > div:nth-of-type(1){
    margin-bottom: 48px;
}
.cmf-left > div:nth-of-type(1) > img {
     width: 447px;
     height: 51px;
}
.cmf-left > div:nth-of-type(2){
    margin-bottom: 70px;
}
.cmf-left > div:nth-of-type(2) > img {
    width: 435px;
    height: 96px;
}
.cmf-left > div:nth-of-type(3) {
    width: 242px;
    height: 72px;
    background: rgba(14,196,173,1);
    box-shadow: 0px 30px 35px 0px rgba(3,76,146,0.15);
    border-radius: 36px;
    font: 24px/72px MicrosoftYaHei;
    text-align: center;
}
.cmf-left > div:nth-of-type(3) > a {
    color: white;
}
.cmf-right {
    margin-top: 120px;
}

/*第二/三版*/
.cm-text {
    text-align: left;
    width: 920px;
    font: 24px/2 MicrosoftYaHei;
    color: #666;
}
.cms-left,
.cmt-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 285px;
    height: 285px;
}
.cms-left > img,
.cmt-right > img {
    max-width: 100%;
    max-height: 100%;
}

/*客户案例*/
.cm-title {
    margin-bottom: 105px;
    font: 43px MicrosoftYaHei;
    color: #333;
    text-align: center;
}
.cm-fourth-content > ul > li {
    overflow: hidden;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 60px;
    margin-bottom: 44px;
    background: rgba(255,255,255,1);
}
.cm-fourth-content > ul > li > img {
    max-width: 100%;
    max-height: 100%;
}
.cm-fourth-content > ul > li:not(:nth-of-type(7n)){
    margin-right: 12px;
}
.cm-fourth-content > ul > li:nth-of-type(7n-6){
    box-shadow: 2px 5px 10px 0px rgba(0,9,76,0.1);
    font: 22px MicrosoftYaHei;
    color: #333;
}

/*定制流程*/
.cm-fifth-content > ul > li {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 275px;
    height: 390px;
    padding-top: 64px;
    margin-bottom: 72px;
    box-sizing: border-box;
    background: rgba(255,255,255,1);
    box-shadow: 6px 17px 22px 0px rgba(0,9,76,0.1);
    border-top: 5px solid;
    border-image: linear-gradient(to right,#0ED0BF,#2A8FDA);
}
.cm-fifth-content > ul > li:not(:nth-of-type(4n)) {
    margin-right: 30px;
}
.cm-fifth-content > ul > li > div {
    width: 130px;
    height: 130px;
    margin-bottom: 42px;
}
.cm-fifth-content > ul > li > p {
    margin-bottom: 35px;
    font: 22px MicrosoftYaHei;
    color: #333;
}
.cm-fifth-content > ul > li > a {
    display: inline-block;
    width: 90px;
    height: 36px;
    background: linear-gradient(90deg,rgba(14,208,191,1) 0%,rgba(42,143,218,1) 100%);
    border-radius: 10px;
    font: 16px/36px MicrosoftYaHei;
    color: white;
    text-align: center;
}

/*一些动效*/
.cm-fifth-content > ul > li:hover{
    animation: myBig 0.5s ease-in;
}
@keyframes myBig {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
