/* 模板样式-01 */
.template_02 {
    width: 100%;
}

/* 公共导航标题 */
.template_02 .template_title {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.template_02 .template_title>p {
    width: 5px;
    margin-right: 20px;
}

.template_02 .template_title>p>span {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #231915;
}

.template_02 .template_title>p>span:nth-child(2) {
    background-color: #e50012;
}

.template_02 .template_title>p>span:nth-child(3) {
    background-color: #fdd000;
}

.template_02 .template_title>div {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}

/* end */

/* 1 */
.template_02 .template_one {
    width: 100%;
    margin: 40px 0 60px;
}

.template_02 .template_item_item {
    padding-left: 25px;
}

.template_02 .template_item_list {
    margin-top: 30px;
    display: flex;
}

.template_02 .template_item_list:first-child {
    margin-top: 20px;
}

.template_02 .template_item_list .l {
    flex: 1;
    height: 270px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: #f3f4f8;
    justify-content: center;
    overflow: hidden;
}
 
.template_02 .template_item_list .l>div{
    display: flex;
    flex-direction: column;
}

.template_02 .template_item_list .l .title {
    color: #e50012;
    font-size: 30px;
}

.template_02 .template_item_list .l .describe {
    color: #757b84;
    font-size: 14px;
    margin-top: 10px;
}

.template_02 .template_item_list .l .text {
    color: #333333;
    font-size: 20px;
    margin-top: 40px;
}

.template_02 .template_item_list .img {
    width: 450px;
    height: 270px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-left: none;
    overflow: hidden;
}

.template_02 .template_item_list .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.template_02 .template_one .template_item_list:last-child .l .describe {
    margin-bottom: 25px;
}

.template_02 .template_one .template_item_list:last-child .l .text {
    margin-top: 10px;
}
.template_02 .template_item_list:hover .img img {
    transform: scale(1.2);
}
/* 2 */
.template_02 .template_two {
    width: 100%;
    margin: 0 0 60px;
}

.template_02 .template_item_item {
    font-size: 18px;
    color: #333333;
}
.template_02 .template_two .template_item_list .l{
    padding-right: 15px;
}
.template_02 .template_two .template_item_list .l .title {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

.template_02 .template_two .template_item_list .l .describe {
    overflow-y: auto;
    font-size: 16px;
    padding-right: 15px;
    color: #333333;
    line-height: 1.7;
    margin-top: 20px;
    word-wrap: break-word;
    word-break: normal;
    text-align: justify;
}
.template_02 .template_two .template_item_list .l .describe::-webkit-scrollbar {
	width: 2px;
}
.template_02 .template_two .template_item_list .img {
    border: none;
}

/* 3 */
.template_02 .template_three {
    width: 100%;
    margin: 0 0 60px;
}
.template_02 .introduce{
    font-size: 18px; 
    color: #333333;
}
.template_02 .template_three ul{
    display: flex;
    flex-wrap: wrap;
    margin: 20px -8px 0;
}
.template_02 .template_three ul li{
    width: 280px;
    text-align: center;
    margin: 8px;
}
.template_02 .template_three ul li .img{
    width: 100%;
    height: 170px;
    overflow: hidden;
}
.template_02 .template_three ul li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}
.template_02 .template_three ul li .title{
    width: 100%;
    height: 60px;
    padding: 0 20px;
    line-height: 60px;
    background: #f3f4f8;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
}
.template_02 .template_three ul li:hover .img img {
    transform: scale(1.2);
}
/* 4 */
.template_02 .template_four {
    width: 100%;
    margin: 0 0 60px;
}
.template_02 .template_four .template_item_item {
    margin-top: 40px;
}

/*屏幕小于或等于1200px*/
@media screen and (max-width:1200px) {
    /* .template_02 .template_item_list {
        flex-wrap: wrap;
    }

    .template_02 .template_item_list .l {
        flex: auto;
        width: 100%;
    }
    .template_02 .template_item_list .img{
        width: 100%;
        height: auto;
        border: 1px solid #e1e6f0;
        border-top: none;
    }
    .template_02 .template_item_list .img img{
        height: auto;
    } */
}
 