.footer {
    background: #101010;
}

.footer .footer-container {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-container .footer-left .link {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.footer .footer-container .footer-left .link .title {
    font-size: 18px;
    color: #F7F7F7;
    margin-right: 14px;
}

.footer .footer-container .footer-left .link .linkTab {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.footer .footer-container .footer-left .link .linkTab .t {
    color: #CCCCCC;
    cursor: pointer;
    margin-right: 12px;
    padding: 2px 8px;
}

.footer .footer-container .footer-left .link .linkTab .t:last-child {
    margin-right: 0;
}

.footer .footer-container .footer-left .link .linkTab .t.active {
    color: #2C3554;
    background-color: #CCCCCC;
    border-radius: 50px;
}

.footer .footer-container .footer-left .linkTitle {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 30px;
}

.footer .footer-container .footer-left .linkTitle .title {
    font-size: 14px;
    color: #CCCCCC;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #B1B1B1;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

.footer .footer-container .footer-left .linkTitle .title:last-child {
    margin-right: 0;
    padding-right: 0;
	border-right: none;
}

.footer .footer-container .footer-left .info {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.footer .footer-container .footer-left .info .info-title {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footer .footer-container .footer-left .info .info-title img {
    margin-right: 4px;
}

.footer .footer-container .footer-left .info .info-title:last-child {
    margin-bottom: 0;
}

.footer .footer-container .footer-left .info .info-title span {
    font-size: 16px;
    color: #F7F7F7;
}

.footer .footer-container .footer-left .info .info-title.phone span {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}

.footer .footer-container .footer-right {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.footer .footer-container .footer-right img {
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.footer .footer-container .footer-right span {
    color: #FFFFFF;
    margin-top: 10px;
}

.footer .footer-bottom {
    height: 50px;
    line-height: 50px;
    background: #000000;
    text-align: center;
    color: #CCCCCC;
}