<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">footer {
    box-sizing: border-box;
    width: 100%;
    height: 615px;
    padding: 0 60px;
    padding-top: .1px;
    margin-top: 100px;
    background-color: #f5f6f7;
    color: #b1b2b3;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.footer-top .logo {
    width: 140px;
    height: 46px;
}

.footer-top .produce-logo {
    display: flex;
}

.footer-top .produce-logo&gt;div {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #a6a7a7;
    text-align: center;
    overflow: hidden;
    transition: All 0.6s ease;
  -webkit-transition: All 0.6s ease;
  -moz-transition: All 0.6s ease;
  -o-transition: All 0.6s ease;
}
.footer-top .produce-logo&gt;div:hover{
    background: #3aa9ae;
}
.footer-top .produce-logo&gt;div a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.footer-top .produce-logo&gt;div a img{
    max-width: 100%;
    display: block;
    margin: auto;
}
.footer-top .produce-logo&gt;div:not(:last-child) {
    margin-right: 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.footer-main .title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.footer-main .list {
    margin-top: 40px;
}

.footer-main .list p:not(.tel-number) {
    line-height: 25px;
}

.footer-main&gt;div:first-child .list {
    display: flex;
}

.footer-main&gt;div:first-child .list span {
    display: inline-block;
    margin-right: 10px;
}

.footer-main .list .icon-address {
    width: 13px;
    height: 16px;
    background: url(../images/icon-locatio-gray.png) no-repeat center;
    background-size: 100% 100%;
}

.footer-main .list .icon-tel {
    width: 13px;
    height: 13px;
    background: url(../images/icon-tel-gray.png) no-repeat center;
    background-size: 100% 100%;
}

.footer-main .list .icon-fax {
    width: 13px;
    height: 10px;
    background: url(../images/icon-email-gray.png) no-repeat center;
    background-size: 100% 100%;
}

.footer-main .list .QR-code {
    width: 105px;
    height: 105px;
    margin-left: 100px;
}

.footer-main .list .tel-number {
    font-size: 46px;
    color: #3aa9ae;
    font-weight: bold;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}
.footer-bottom a{
    color: #b1b2b3;
}

.footer-bottom .space-between {
    margin: 0 10px;
}
.footer-main .list a{
    color: #b1b2b3;
    position: relative;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    display: inline-block;
    margin: 2px 0;
}
.footer-main .list a:hover{
    color: #3aa9ae;
}
.footer-main .list a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #3aa9ae;
    left: 0;
    bottom: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}
.footer-main .list a:hover::after{
    width: 100%;
}</pre></body></html>