.new {
    padding: 105px 13%;
}
.new-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}
.new-title span{
    color: #7dc9d1;
    font-size: 14px;
    font-weight: bold;
}
.new-title span .line {
    border-top: 1px solid #7dc9d1;
    margin-left: 20px;
    vertical-align: super;
}
.new-title h4 {
    color: #333333;
    font-size: 24px;
    margin: 20px 0  0 0;
}
.nav-tabs {
    border-bottom: none;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    background-color: #7dc9d1;
    color: #ffffff;
    border: 1px solid #7dc9d1;
    outline: none;
    cursor: pointer;
}
.newtab>li>a:focus, .newtab>li>a:hover {
    background-color: #7dc9d1;
    color: #ffffff;
    border: 1px solid #7dc9d1;
}
.newtab li a {
    padding: 10px 28px;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #666666;
    transition: all 0.3s linear;
    margin: 0;
    margin-right: 20px;
}
.newtab li:nth-child(2) a {
    margin-right: 0;
}
.product-more {
    text-align: center;
    margin-top: 70px;
}
.product-more a {
    padding: 15px 27px;
    background: #7dc9d1;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
}
.product-more a:hover {
    background: #8fd7df;
}
.newList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    border: 1px solid #cccccc;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}
.newList:hover {
    border: 1px solid #7dc9d1;
}
.newList .newImg {
    width: 22%;
    margin-right: 60px;
}
.newList .newImg img {
    max-width: 100%;
}
.newText {
    width: 57%;
}
.newText h4 {
    color: #333333;
    font-size: 18px;
    transition: all 0.3s linear;
}
.newText p {
    color: #666666;
    font-size: 14px;
    line-height: 25px;
}
.newText span {
    display: inline-block;
    position: relative;
    color: #666666;
    font-size: 14px;
    padding: 7px 12px;
    border-radius: 20px;
    transition: all 0.3s linear;
    margin-left: -7px;
}
.newText span::before {
    content: "";
    width: 16px;
    height: 15px;
    display: inline-block;
    background-image: url(../images/new/date.png);
    background-position: center;
    background-size: 16px 15px;
    background-repeat: no-repeat;
    vertical-align: text-bottom;
    margin-right: 10px;
}
.newList:hover h4 {
    color: #7dc9d1;
}
.newList:hover span {
    background-color: #7dc9d1;
    color: #ffffff;
}
.newList:hover span::before {
    background-image: url(../images/new/dateActive.png);
}
@media (max-width: 1024px) { 
    .new {
        padding: 105px 5%;
    }
}
@media (max-width:768px) {
    .new {
        padding: 50px 5%;
    }
}
@media (max-width: 414px) {
    .new-title {
        display: inline-block;
    }
    .newtab {
        margin-top: 35px;
    }
    .newList {
        display: inline-block;
    }
    .newList .newImg ,
    .newText {
        width: 100%;
    }
    .newText {
        margin-top: 20px;
    }
}