﻿/*banner*/
.banner_bg {
    width: 100%;
    height: 474px;
    background:url("banner.jpg") no-repeat;
    background-size: 100% 100%;
}
.w {
    width: 1200px;
    margin: 0 auto;
}
.title {
    margin: 0 auto;
    width: 532px;
    height: 70px;
    background: url("title1.png") no-repeat;
    background-size: 100% 100%;
}
.common_container {
    width: 580px;
    height: auto;
    margin-top: 45px;
}
.common_title {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.title_name {
    margin-left: 20px;
    font-size: 24px;
    color: #2458da;
    font-weight: bold;
}
.title_more {
    font-size: 16px;
    color: #2458da;
}
/*小圆点*/
.title_name::before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    left: 3px;
    top: 13px;
    background-color: #2458da;
    border-radius: 50%;
}
.container_list_body ul li {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding: 0 10px 0 30px;
    border-bottom: 1px dashed #2577ff;
}
.container_list_body ul li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container_list_body ul li a:hover span {
    color: #2458da;
}
.container_list_body ul li a span {
    font-size: 16px;
}
.list_name {
    color: #404040;
    width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list_time {
    color: #999;
}
/*小圆点*/
.container_list_body ul li a::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    left: 15px;
    top: 26px;
    background-color: #2458da;
    border-radius: 50%;
}
.common_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.title_second {
    width: 652px;
    height: 70px;
    margin: 0 auto;
    margin-top: 30px;
    background: url("title2.png") no-repeat;
    background-size: 100% 100%;
}
.common_box_sec ul li {
    position: relative;
    padding: 0 10px 0 30px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px dashed #2577ff;
}
.common_box_sec ul li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.common_box_sec ul li a:hover span {
    color: #2458da;
}
/*小圆点*/
.common_box_sec ul li a::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    left: 15px;
    top: 26px;
    background-color: #2458da;
    border-radius: 50%;
}
.container_third {
    margin-top: 80px;
}
.container_third ul li {
    width: 380px;
    height: 100px;
    margin-bottom: 25px;
    background-image: linear-gradient(45deg,
    #2a8cfc 0%,
    #1bbffd 100%);
    border-radius: 5px;
    transition: all .3s;
}
.container_third ul li:hover {
    transform: scale(1.01,1.01);
    box-shadow: 0 0 10px 3px #a1e0f8;
}
.container_third ul li a {
    display: block;
    width: 100%;
    height: 100%;
}
.container_third ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
/*适老化*/
.newStyle .common_box {
    flex-direction: column;
    align-items: center;
}
.newStyle .common_container {
    width: 100%;
}
.newStyle .title_name {
    font-size: 40px;
}
.newStyle .title_more {
    font-size: 34px;
}
.newStyle .title_name::before {
    top: 24px;
}
.newStyle .container_list_body ul li a span {
    font-size: 34px;
}
.newStyle .container_list_body ul li {
    height: 80px;
    line-height: 80px;
}
.newStyle .container_list_body ul li a::before {
    top: 35px;
}
.newStyle .common_box_sec ul li a {
    font-size: 34px;
}
.newStyle .common_box_sec ul li {
    height: 80px;
    line-height: 80px;
}
.newStyle .common_box_sec ul li a::before {
    top: 37px;
}
.newStyle .container_third ul li a img {
    width: 580px;
}

.newStyle .container_third ul li {
    width: 580px;
    margin-bottom: 90px;
}
/*手机端适配*/
@media only screen and (max-width:500px) {
    .w {
        width: 100%;
    }
    .banner_bg {
        height: 100px;
    }
    .title,.title_second {
        width: 90%;
    }
    .common_container {
        width: 100%;
    }
    .container_third ul {
        flex-direction: column;
        align-items: center;
    }
}