html, body {
    font-size: 14px;
    background: #FFF;
    color: #333;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}

blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul, li {
    list-style: none;
}

a, a:hover {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

img {
    width: 100%;
    object-fit: fill;
}

input:focus-visible {
    border: none;
    outline: none;
}

.w1680 {
    width: 1680px;
    margin: 0 auto;
}

.w1440 {
    width: 1440px;
    margin: 0 auto;
}

.clip {
    -webkit-clip-path: polygon(0% -10%, 100% 0%, 100% 0%, 0% 0%);
    clip-path: polygon(0% -10%, 100% 0%, 100% 0%, 0% 0%);
    -webkit-transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.clip.active {
    -webkit-clip-path: polygon(0% -50%, 100% 0, 100% 100%, 0% 115%);
    clip-path: polygon(0% -50%, 100% 0, 100% 100%, 0% 115%);
}

.btn {
    display: flex;
    width: fit-content;
    font-size: 16px;
    padding: 8px 24px;
    color: #FFF;
    background: #e6213a;
    border-radius: 25px;
    border: 1px solid #e6213a;
}

a.btn:not([href]) {
    color: #FFF;
}

.btn i {
    margin-left: 10px;
}

.btn.btn-primary {
    color: #e6213a;
    background: #FFF;
}

.btn:hover {
    background-color: #e6213a;
    color: #FFF;
}

.btn.btn-primary:hover {
    background-color: #e6213a;
    border: 1px solid #e6213a;
    color: #FFF;
}

.btn.btn-plain {
    background: transparent;
}

.btn.btn-right-angle {
    border-radius: 0;
}

/*.swiper-next {*/
/*    transform: rotate(180deg);*/
/*}*/

.swiper-prev, .swiper-next {
    line-height: normal;
    cursor: pointer;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    white-space: nowrap;
}

.head .logo-box {
    display: flex;
    align-items: center;
}

.head .logo-box .line {
    width: 2px;
    height: 50px;
    background-color: #dddcde;
    margin-left: 10px;
}

.head .logo-box img {
    width: 200px;
}

.head .logo-box .title {
    font-size: 22px;
    font-weight: 650;
    padding-left: 10px;
}

.head .nav-box {
    display: flex;
    padding: 0 10px;
    height: 100%;
}

.head .nav-box .first-nav {
    position: relative;
}

.head .nav-box .first-nav > a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
}

.head .nav-box .first-nav > a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #df002c;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    z-index: 15;
}

.head .nav-box .first-nav > a:hover::before {
    bottom: 0.5px;
}

.head .nav-box .first-nav > a span {
    border-right: 1px solid #6e6e6e;
    padding: 0 20px;
    line-height: 1;
}

.head .nav-box .first-nav:last-child > a span {
    border-right: none;
}

.head .nav-box .first-nav.active > a span {
    /*background-color: #1856bd;*/
    /*color: #fff;*/
    font-size: 18px;
    font-weight: bold;
    /*padding: 8px 20px;*/
    /*border-radius: 20px;*/
}

.head .nav-box .first-nav:not(.active):hover > a span {
    /*color: #1856bd;*/
    font-weight: bold;
}

.head .nav-box .second-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    display: none;
    background-color: #f9f9f9;
    box-shadow: inset 0px 15px 6px -15px rgba(0, 0, 0, 0.25);
}

.head .nav-box .second-nav > a {
    display: block;
    padding: 20px 30px;
    font-size: 15px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head .nav-box .second-nav > a:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #df002c;
}

.head .search-tel-box {
    display: flex;
    align-items: center;
    color: #666;
}

.head .search-tel-box .search-box {
    position: relative;
}

.head .search-box .icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.head .search-box .icon i {
    z-index: 1;
    margin-right: 5px;
    font-size: 20px;
    /*padding-left: 10px;*/
    color: #000;
}

.head .search-box form {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.head .search-box form input {
    position: absolute;
    right: -40px;
    z-index: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    line-height: 40px;
    border-radius: 20px;
    font-size: 12px;
    padding: 0 40px 0 20px;
    width: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.head .search-box form .btn {
    position: absolute;
    z-index: 2;
    right: 0;
    padding: 0;
    width: 40px !important;
    background-color: transparent !important;
}

.head .search-box:hover .icon i {
    color: #FFF;
}

.head .search-box:hover form input {
    background-color: #e6213a;
    width: 300px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.head .search-box:hover form input::placeholder{
    color: #FFF;
}

.head .search-tel-box .language-box {
    font-size: 20px;
    padding: 0 10px;
}

.head .search-tel-box .language-box a {
    color: #e6213a;
}

.head .search-tel-box .line {
    background-color: #cfcfcf;
    width: 2px;
    height: 20px;
    margin: 0 10px;
}

.head .search-tel-box .tel-box a {
    display: flex;
    align-items: center;
}

.head .search-tel-box .tel-box a span {
    font-size: 26px;
    font-weight: bold;
    color: #cc0000;
    margin-left: 5px;
}

.head .search-tel-box .tel-box a:hover img {
    animation: rotates 1s linear infinite;
    -webkit-animation: rotates 1s linear infinite;
}

.sidebar-nav {
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: none;
}

.sidebar-nav .icon {
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 2px;
    margin: auto;
    position: relative;
    
}

.sidebar-nav .icon::before, .sidebar-nav .icon::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #1E1E1E;
    -webkit-transition-duration: 0.3s, 0.3s;
    -moz-transition-duration: 0.3s, 0.3s;
    -ms-transition-duration: 0.3s, 0.3s;
    -o-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    -moz-transition-delay: 0.3s, 0s;
    -ms-transition-delay: 0.3s, 0s;
    -o-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}

.sidebar-nav .icon::before {
    top: -6px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top,transform;
    -ms-transition-property: top,transform;
    -o-transition-property: top,transform;
    transition-property: top, transform;
}

.sidebar-nav .icon::after {
    bottom: -6px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom,transform;
    -ms-transition-property: bottom,transform;
    -o-transition-property: bottom,transform;
    transition-property: bottom, transform;
}

.sidebar-nav.active .icon::before, .sidebar-nav.active .icon::after {
    -webkit-transition-delay: 0s, 0.3s;
    -moz-transition-delay: 0s, 0.3s;
    -ms-transition-delay: 0s, 0.3s;
    -o-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}

.sidebar-nav.active .icon::before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sidebar-nav.active .icon::after {
    bottom: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sidebar {
    position: fixed;
    right: -100%;
    top: 70px;
    bottom: 0px;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
    transition: right 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    right: 0;
}

.sidebar .wrapper {
    height: 100%;
    padding: 30px 5%;
    overflow-y: auto;
}

.sidebar a {
    display: block;
}

.sidebar .first-nav {
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar .first-nav > a {
    margin-bottom: 20px;
}

.sidebar .second-nav {
    font-size: 16px;
    text-indent: 1em;
}

.sidebar .second-nav a {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.banner a {
    display: block;
}

.banner .banner-button-next,
.banner .banner-button-prev {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
}

.banner .banner-button-next {
    right: calc((100vw - 1680px) / 2);
    background-image: url('../images/right-arrow.png');
}

.banner .banner-button-prev {
    left: calc((100vw - 1680px) / 2);
    background-image: url('../images/left-arrow.png');
}

.banner .banner-pagination {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    text-align: center;
}

.banner-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFF;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.n_banner {
    display: none;
}

.product .series {
    display: flex;
}

.series .item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-right: 1px solid #e6e6e6;
}

.series .item:last-child {
    border: none;
}

.series .item i {
    font-size: 24px;
}

.series .item.active {
    background-color: #e6213a;
    color: #FFF;
    transition: all .4s;
}

.series .item.active i {
    color: #FFF;
}

.series .item.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #e6213a;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    z-index: 15;
}

.product .series-product {
    background-image: url('../images/product-background.png');
    background-size: cover;
    padding: 50px 0;
}

.series-product .item {
    display: none;
}

.series-product .item.active {
    display: block;
}

.series-product .item .product-box {
    display: flex;
    /*display: grid;*/
    /*grid-template-columns: repeat(4, 1fr);*/
    /*gap: 20px;*/
}

.series-product .item .product-box .product-item {
    overflow: hidden;
    border-radius: 5px;
}

.series-product .item .product-box a {
    display: block;
    overflow: hidden;
}

.series-product .item .product-box .product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.series-product .item .product-box .product-item:hover img {
    transform: scale(1.2);
}

/*.series-product .item .product-box .product-title {*/
/*    text-align: center;*/
/*    padding: 10px;*/
/*    font-size: 16px;*/
/*    background-color: #FFF;*/
/*    border-top: 1px solid #eee;*/
/*}*/

.series-product .item .product-box .product-item:hover .product-title {
    background-color: #1856bd;
    color: #FFF;
}

.series-product .product-box > div {
    width: 50%;
}

.product-swiper .product-controller {
    position: absolute;
    right: 5%;
    bottom: 10%;
    /*transform: translate(-50%);*/
    z-index: 2;
    display: flex;
    align-items: center;
}

.product-swiper .product-controller .swiper-prev,
.product-swiper .product-controller .swiper-next {
    height: 21px;
    line-height: normal;
    margin: 0 5px;
    color: #e6213a;
}

.product-swiper .product-controller .swiper-prev.swiper-button-disabled,
.product-swiper .product-controller .swiper-next.swiper-button-disabled {
    color: #999;
}

.product-swiper .product-controller .swiper-prev i,
.product-swiper .product-controller .swiper-next i {
    font-size: 20px;
}

.product-swiper .swiper-container .product-pagination {
    width: fit-content;
    line-height: normal;
}

.product-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    color: #999999;
    background: none;
    font-size: 16px;
    margin: 0 5px;
    opacity: 1;
}

.product-pagination .swiper-pagination-bullet-active {
    background: transparent;
    color: #e6213a;
}

.series-product .product-box .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, .5);
    padding: 50px 80px;
}

.product-box .details .details-item {
    display: none;
}

.product-box .details .details-item.active {
    display: contents;
}

.product-box .details .product-title {
    font-size: 48px;
    font-weight: 650;
    color: #e6213a;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.product-box .details .description {
    font-size: 24px;
}

.product-box .details .common .title {
    color: #e8362e;
    font-size: 24px;
    margin-bottom: 30px;
}

.product-box .details .advantage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.advantage .adv-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #e6213a;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
}

.advantage .adv-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}

.header .title {
    font-size: 48px;
    font-weight: bold;
    color: #e6213a;
    font-family: emoji;
}

.header .sub-title {
    font-size: 24px;
    line-height: 36px;
}

.header .sub-title .highlight {
    font-size: 30px;
    font-weight: bold;
}

.header .more {
    font-size: 16px;
}

.header .more:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #e6213a;
}

.application .content {
    display: flex;
}

.application .content > div {
    width: 50%;
}

.application .content .left .item {
    height: 100%;
    display: none;
    position: relative;
}

.application .content .left .item.active {
    display: block;
}

.application .content .app-img {
    width: 100%;
    height: 100%;
}

.application .content .left .text-box {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 10;
    transform: translate(0, -50%);
    width: 720px;
    color: #FFF;
}

.application .content .left .text-box .name {
    font-size: 40px;
    font-weight: bold;
}

.application .content .left .text-box .name .line {
    width: 1em;
    border-top: 3px solid #e6213a;
}

.application .content .left .text-box .description {
    font-size: 24px;
    margin-top: 20px;
}

.application .content .right {
    display: flex;
    flex-direction: column;
    background-image: url('../images/application-bg.png');
    background-size: 100% 100%;
}

.application .content .right .item {
    flex: 1;
    padding: 20px 30px;
    color: #FFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.application .content .right .item:last-child {
    border: none;
}

.application .content .right .item:hover {
    background-color: rgba(230, 33, 58, .12);
}

.application .content .right a {
    display: block;
}

.application .content .right .item .number {
    font-size: 62px;
    font-weight: bold;
    font-family: fantasy;
    color: rgba(255, 255, 255, 0.35);
}

.application .content .right .item .name {
    font-size: 28px;
}

.application .content .right .item .enname {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
}

.application .content .right .item .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.application .content .right .item .text .icon {
    width: 30px;
}

.application .btn {
    border-color: #FFF;
    margin-top: 100px;
}

.company {
    background-color: #f6f6f6;
    padding: 50px 0 50px 0;
}

.company .content-box {
    display: flex;
    background-color: #FFF;
    padding: 50px 40px;
}

.company .content-box > div {
    width: 50%;
}

.company .content-box .text-box {
    padding-right: 50px;
}

.company .content-box .text-box .first-title {
    font-size: 48px;
    font-weight: 650;
}

.company .content-box .text-box .first-title .highlight {
    color: #e6213a;
}

.company .content-box .text-box .second-title {
    font-size: 36px;
    color: #333;
}

.company .content-box .text-box .line {
    width: 44px;
    margin: 20px 0;
    border-bottom: 2px solid #FFF;
}

.company .description {
    font-size: 18px;
    line-height: 36px;
    margin-top: 30px;
}

.company .label-box {
    display: inline-flex;
    background-color: #e1e1e1;
    margin-top: 65px;
}

.company .label-box .item {
    padding: 10px 50px;
}

.company .label-box .item:first-child {
    background-color: #e6213a;
    color: #FFF;
    padding: 10px 60px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%)
}

.company .img-box img {
    height: 100%;
}

.company .partner {
    padding: 40px 40px 20px 40px;
    position: relative;
}

.company .partner-swiper-controller .iconfont {
    font-size: 32px;
    color: #e6213a;
}

.company .partner .swiper-prev,
.company .partner .swiper-next {
    position: absolute;
    top: 55%;
    transform: translate(0, -50%);
}

.company .partner .swiper-prev {
    left: 0;
}

.company .partner .swiper-next {
    right: 0;
}

.company .partner-swiper-controller .swiper-button-disabled .iconfont {
    color: #a9a9a9;
}

.news {
    padding: 50px 0;
    background-image: url('../images/news-bg.png');
    background-size: 100% 100%;
}

.news .article-list {
    display: flex;
}

.news .article-list .item {
    width: 26%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background-color: #FFF;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
    margin-right: 20px;
    transition: all .3s;
}

.news .article-list .item:last-child {
    margin-right: 0;
}

.news .article-list .item .background {
    display: none;
    width: 100%;
    height: 100%;
}

.news .article-list .item .background img {
    width: 100%;
    height: 100%;
}

.news .article-list .item:hover .background img {
    width: 100%;
}

.news .article-list .item .text-wrapper {
    width: 100%;
    padding: 30px 20px 0 20px;
    display: flex;
    flex-direction: column;
}

.news .article-list .item .date-wrapper {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    align-self: start;
    margin-bottom: 20px;
}

.news .article-list .item .date-wrapper .day {
    font-size: 36px;
    font-weight: 900;
    color: #e6213a;
}

.news .article-list .item .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.news .article-list .item .description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis;
}

.news .article-list .item .btn {
    display: none;
    width: 160px;
    justify-content: center;
    padding: 10px 20px;
}

.news .article-list .item .img-wrapper {
    overflow: hidden;
    margin: 0 20px;
    border-radius: 10px;
}

.news .article-list .item .img-wrapper img {
    width: 100%;
    height: 160px;
}

.news .article-list .item .more-btn {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
}

.news .article-list .item .more-btn:hover {
    color: #0287cf;
}

.news .article-list .item.active {
    width: 48%;
    color: #FFF;
}

.news .article-list .item.active .background {
    display: block;
}

.news .article-list .item.active .text-wrapper {
    width: 100%;
    height: 100%;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(16, 79, 123, .68);
    justify-content: space-between;
}

.news .article-list .item.active .text-wrapper .date-wrapper {
    align-self: end;
    border-radius: 10px;
    border: 1px solid #FFF;
}

.news .article-list .item.active .date-wrapper .day {
    text-align: center;
    color: #FFF;
}

.news .article-list .item.active .btn {
    display: flex;
    border: 1px solid #FFF;
}

.news .article-list .item.active .img-wrapper {
    display: none;
}

.news .article-list .item.active .more-btn {
    display: none;
}

.foot {
    padding: 50px 0;
    background-color: #333;
    color: #FFF;
}

.foot .company-info {
    display: flex;
    flex-direction: column;
}

.foot .company-info .logo {
    width: 280px;
}

.foot .company-info .info-text {
    /*padding-left: 20px;*/
}

.foot .company-info .info-text .dedicated-line {
    font-size: 28px;
    line-height: 36px;
    padding: 15px 0;
}


.foot .company-info .info-text .phone, 
.foot .company-info .info-text .address {
    font-size: 16px;
}

.foot-nav {
    display: flex;
}

.foot-nav .nav-item {
    padding: 0 40px;
    max-width: 240px;
    min-width: 160px;
}

.foot-nav .first-nav {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.foot-nav .second-nav {
    margin-bottom: 20px;
    font-size: 16px;
}

.foot-nav .second-nav a {
    display: block;
    color: #FFF;
}

.foot-nav .second-nav a:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #e63926;
}

.foot-nav ul {
    padding-left: 15px;
}

.foot-nav ul li {
    list-style: disc;
}

.foot-nav .second-nav img {
    width: 120px;
    height: 120px;
    background-color: #ccc;
}

.bottom {
    background-color: #e6213a;
    color: #FFF;
    padding: 20px 0;
}

.bottom a {
    color: #fff;
}
