/**
*
* module-06
* return 模板
* @version: 01
* @author: BFC
* ct: 2024/01/26
**/

.module-06-template-left,
.module-06-template-right{
    border-radius: 15px;
    background: #fff;
    padding: 80px 20px;
    margin-top: 10px;
}

.module-06-template-right a {
    color: #000;
    text-decoration: none;
}

.module-06-template-right a:hover {
    color: #ED6E00;
    transition: all 0.6s;
}
.module-06-template-left-item {
    position: relative;
}

.module-06-template-left-item .float-title {
    position: absolute;
    top: -170px;
}
.pc-show {
    display: block;
}
.md-show {
    display: none;
}
@media (max-width:729px) {
    .module-06-template-left-item .float-title {
        top: -70px;
    }
    .module-06-template-left,
    .module-06-template-right{
        padding: 10px;
    }
    .md-show {
        display: block;
    }
    .pc-show {
        display: none;
    }
}