@charset "UTF-8";

/** 变量文件 **/


/** 函数文件 **/


/**按钮样式**/


/**  flex-direction: row | row-reverse | column | column-reverse; 
 	justify-content: flex-start | flex-end | center | space-between | space-around; 
 	    align-items: flex-start | flex-end | center | baseline | stretch;
      align-content: flex-start | flex-end | center | space-between | space-around | stretch; 
**/

.moduleBox1 {
    margin-top: 110px;
}

.moduleBox1 h1 {
    box-sizing: border-box;
    width: 70%;
}

.moduleBox1 p {
    margin-top: 26px;
    box-sizing: border-box;
	width: 70%;
}

.moduleBox1 .pic {
    margin-top: 89px;
    width: 70%;
    height: auto;
    border: none;
    background-color: #ccc;
}

.moduleBox2 {
    margin-top: 136px;
}

.moduleBox2 ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.moduleBox2 li {
    width: 100%;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.moduleBox2 li:nth-of-type(2n) {
    flex-flow: row-reverse;
}

.moduleBox2 li .contentBox {
    width: 48%;
}

.moduleBox2 li h1 {
    width: 100%;
}

.moduleBox2 p {
    margin-top: 26px;
    min-height: 150px;
    width: 100%;
    margin-right: 4%;
}

.moduleBox2 .imgBox {
    width: 48%;
    height: 370px;
    overflow: hidden;
    background-color: #ccc;
}

.moduleBox2 img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}
/**  
.moduleBox2 li:nth-of-type(2) img {
   top: 75%;
}
**/

@media screen and (max-width: 1024px) {
    .moduleBox1 {
        margin-top: 2.6875rem;
    }
    .moduleBox1 h1 {
        padding-left: 0;
        line-height: 1.875rem;
        width: 100%;
    }
    .moduleBox1 p {
        margin-top: 0.875rem;
        padding-left: 0;
		width: 100%;
    }
    .moduleBox1 .pic {
        margin-top: 2.6875rem;
        height: 13.75rem;
        width: 100%;
        margin-left: 0;
    }
    .moduleBox2 {
        margin-top: 0;
    }
    .moduleBox2 li {
        width: 100%;
        margin-top: 2.375rem;
        display: block;
        overflow: hidden;
    }
    .moduleBox2 li:nth-of-type(2) img {
        width: 100%;
        height: auto;
    }
    .moduleBox2 li .contentBox {
        width: 100%;
    }
    .moduleBox2 p {
        margin-top: 0.875rem;
        min-height: auto;
    }
    .moduleBox2 .imgBox {
        width: 100%;
        margin-top: 2.4375rem;
        height: 13.75rem;
    }
    .moduleBox2 .imgBox img {
        width: 100%;
        height: 100%;
    }
}