.secOne {
    padding: 0 10px 3%;
    margin: 0 auto;
}

.secTlt {
    line-height: 2.5;
    text-align: center;
    color: #333;
}

.secOneLst, .secTwoLst {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.secOneLst {
    max-width: 1230px;
}

.secOneItem {
    width: 50%;
    padding: 1.25%;
}

.secOneItemLink {
    display: block;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.secOneImgBox {
    position: relative;
    width: 100%;
    padding-bottom: 44.44%;
}

.secOneItemTlt {
    padding: 3% 3% 3% 5%;
    font-weight: 700;
    color: #333;
}

.secOneItemTxt {
    padding: 0 3% 3% 5%;
    line-height: 1.8;
    color: #7A7A7A;
}

.secTwo {padding: 2% 10px;}
.secTwoLst {max-width: 1224px;}

.secTwoItem {
    width: 25%;
    padding: 1%;
}

.secTwoItemLink {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 0;
    padding: 2%;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
}

.secTwoItemLink::before,
.secTwoItemLink::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    transform: translate(-50%, -50%);
}

.secTwoItemLink::before {
    z-index: -2;
    width: 200%;
    height: 200%;
}

.secTwoItemLink::after {
    z-index: -1;
    width: -moz-calc(100% - 6px);
    width: calc(100% - 6px);
    height: -moz-calc(100% - 6px);
    height: calc(100% - 6px);
    background-color: #fff;
    border-radius: 2px;
}

.secTwoItemLink:hover {
    border: none;
}

.secTwoItemLink:hover::before {
    background: conic-gradient(from 1turn, #52E5E7,#866eed, #3832b7, #52E5E7);
    animation: brandRotate 4s infinite -.1s;
}
@keyframes brandRotate {
    100% {
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

.secTwoImgBox {
    position: relative;
    width: 100%;
    padding-bottom: 49.65%;
}

.secTwoTxt {
    padding-bottom: 5%;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .secOneItem {width: 100%;}
    .secTwoItem {width: 50%;padding-bottom: 5%;}
}

@media screen and (max-width: 450px) {
    .secTwoItem {width: 50%}
}