* {
    outline: 1px solid --tomato;
}

.mc {
    color: tomato;
}



#header {
    line-height: 100px;
    border-bottom: 1px solid #ddd;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

#header h1 {
    font-size: 0;
}


#header .gnb>ul {
    display: flex;
    gap: 30px;
}

#header .gnb>ul a {
    display: block;
}




.mainContent {
    padding: 100px 0;
}

.mainContent h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
}

.mainContent h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #333;
    margin: 20px auto;
}

.mainContent>p {
    font-size: 15px;
    margin: 0 0 40px 0;
    text-align: center;
}


.mainContent .inner {
    display: flex;
    gap: 30px;
    width: 1200px;
    margin: 0 auto;
}



.mainContent .top {
    margin: 0 auto 50px auto;
}

.mainContent .top>div {
    flex: 1;
}



.mainContent .top .right {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #333;
    padding: 40px 0 0 0;
}

.mainContent .top .txt {
    margin: auto 0 0 0;
    font-size: 13px;
    border-top: 1px solid #eee;
    background: #f7f7f7;
    padding: 10px 15px 30px 15px;
    word-break: break-all;
    line-height: 20px;
}

.mainContent .bottom {
    width: 1200px;
    margin: 0 auto;
}

.mainContent .bottom h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 0 20px;
    margin: 0 0 30px 0;
}

.mainContent .bottom ul {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.mainContent .bottom ul>li {
    flex: 1 0 40%;
    line-height: 25px;
}

.mainContent .bottom ul>li::before {
    content: attr(data-num);
    display: inline-block;
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    margin: 0 15px 0 0;
}

.mainContent .bottom h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 2px;
    background: tomato;

    transform: rotate(-45deg);
}


.mainContent .tit {
    position: relative;
    margin: 0 0 20px 0;
}


.mainContent .tit h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.mainContent .tit p {
    font-size: 15px;
}

.mainContent .basic_list>li {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    padding: 0 0 0 20px;
}

.mainContent .basic_list>li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 2px;
    height: 2px;
    background: #333;
}





#footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0 60px 0;
}