/* 模板样式-03 */
.template_03 {
    width: 100%;
}

/* 公共导航标题 */
.template_03 .template_title {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.template_03 .template_title>p {
    width: 5px;
    margin-right: 20px;
}

.template_03 .template_title>p>span {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #231915;
}

.template_03 .template_title>p>span:nth-child(2) {
    background-color: #e50012;
}

.template_03 .template_title>p>span:nth-child(3) {
    background-color: #fdd000;
}

.template_03 .template_title>div {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}

/* end */

/* 1 */
.template_03 .template_one {
    width: 100%;
    margin: 40px 0 60px;
}

.template_03 .template_item_item {
    padding-left: 25px;
}

.template_03 .template_item_list {
    margin-top: 30px;
    display: flex;
}

.template_03 .template_item_list:first-child {
    margin-top: 20px;
}

.template_03 .template_item_list .l {
    flex: 1;
    height: 270px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: #f3f4f8;
    justify-content: center;
    overflow: hidden;
}

.template_03 .template_item_list .l>div {
    display: flex;
    flex-direction: column;
}

.template_03 .template_item_list .l .title {
    color: #e50012;
    font-size: 30px;
}

.template_03 .template_item_list .l .describe {
    color: #757b84;
    font-size: 14px;
    margin-top: 10px;
}

.template_03 .template_item_list .l .text {
    color: #333333;
    font-size: 20px;
    margin-top: 40px;
}

.template_03 .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_03 .template_item_list .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.template_03 .template_one .template_item_list.active .l .describe {
    margin-bottom: 25px;
}

.template_03 .template_one .template_item_list.active .l .text {
    margin-top: 10px;
}

.template_03 .template_item_list:hover .img img {
    transform: scale(1.2);
}

/* 2 */
.template_03 .template_two {
    width: 100%;
    margin: 0 0 40px;
}

.template_03 .introduce {
    font-size: 16px;
    color: #757b84;
    margin-bottom: 30px;
}

.template_03 .template_two tbody td a {
    width: 100%;
}

.template_03 .template_two tbody td img {
    width: 100%;
     transition: all 0.6s ease; 
}

.template_03 .template_two tbody td {
    border: 4px solid #ffffff;
     overflow: hidden; 
}

 .template_03 .template_two tbody td img:hover{
    transform: scale(1.2);
} 

/*屏幕小于或等于1200px*/
@media screen and (max-width:1200px) {
    /* .template_03 .template_item_list {
        flex-wrap: wrap;
    }

    .template_03 .template_item_list .l {
        flex: auto;
        width: 100%;
    }

    .template_03 .template_item_list .img {
        width: 100%;
        height: auto;
        border: 1px solid #e1e6f0;
        border-top: none;
    }

    .template_03 .template_item_list .img img {
        height: auto;
    } */
}