@media only screen and (min-width: 769px) {
    .ajaxcontent {
        width: 1200px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .cooperate_img {
        width: 100%;
        margin-top: 20px;
    }
    .ajaxcontent a {
        color: #333333;
        text-decoration: none;
    }
    .c_title{
        /*font-size: 21px;*/
        font-weight: normal;
        font-stretch: normal;
        line-height: 32px;
        letter-spacing: 0px;
        color: #010101;
        margin-top: 39px;
    }
    .tabdiv{
        margin-top: 22px;
    }
    .tabdiv div{
        /*font-size: 21px;*/
        font-weight: normal;
        font-stretch: normal;
        line-height: 32px;
        letter-spacing: 0px;
        color: #010101;
        text-indent: 2em
    }
    .weimg{
        width: 200px;
        height: 200px;
    }
    .comtext{
        width: 897px;
        height: 230px;
        /*font-size: 21px;*/
        font-weight: normal;
        font-stretch: normal;
        line-height: 42px;
        letter-spacing: 0px;
        color: #010101;
        float: left;
        margin-left: 61px;
        position: relative;
        /*width: 80%;*/
    }
    .comimg{
        float: left;
        margin-top: 20px;
    }
    .comdiv{
        margin-top: 60px;
        clear: both;
    }
    .comdiv1{
        padding-top: 44px;
    }
    .limg{
        width: 78px;
        height: 78px;
    }
    .limgdiv{
        position: absolute;
        font-size: 17px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 42px;
        letter-spacing: 0px;
        color: #010101;
        right: 10px;
        top: 138px;
    }
    .awards-container{
        padding-top: 59px;
    }
    .line_span{
        margin-left: 10px;
    }

    .awards-containerdiv {
        /*width: 1200px;*/
        overflow: hidden;
        cursor: pointer;
        text-align: center;
    }

    .awards-container {
        display: flex;
        /*width: calc(100% * 5); !* 假设每张图片占20%，这里是4张图+1张克隆图 *!*/
        animation: scroll 60s linear infinite; /* 动画时间是轮播一轮的时间 */
    }

    .awards-wrapper {
        /*width: calc(100% / 4); !* 由于有4张图片，每张图片占25% *!*/
        flex-shrink: 0;
        /*overflow: hidden;*/
    }

    img {
        /*width: 100%;*/
        /*vertical-align: top;*/
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}
