

/* Header 部分 */
header {
    width: 100%;
    position: relative;
}
header nav .header_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 110px;
    width: 100%;
}
header nav .header_nav li {
    margin: 0 10px;
}
header nav .header_nav li a {
    font-size: 24px;
    color: #fff;
}
header .banner {
    width: 100%;
}
header .banner img{
    width: 100%;
    height: auto;
}
header .concat {
    width: 300px;
    position: absolute;
    left: 50%;
    bottom: 40px;
    margin-left: -150px;
}
header .concat img{
    width: 100%;
}


/* Main 内容部分 */
main .team {
    width: 180px;
    margin: 80px auto;
}
main .team img{
    width: 100%;
}
main .feedback {
    margin-top: 80px;
}
main .feedback .title_style1 {
    width: 180px;
    margin: 0 auto 30px;
}
main .feedback .title_style1 .logo {
    width: 100%;
}
main .feedback .title_style1 .border {
    width: 100%;
    height: 8px;
    background: #00ADFF;
    margin-top: 10px;
}
main .feedback ul {
    padding: 0 30px;
}
main .feedback ul li {
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .1);
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 30px;
    padding: 30px;
}
main .feedback ul li .user {
    display: flex;
    align-items: flex-start;
}
main .feedback ul li .user .avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}
main .feedback ul li .user .info {
    width: 100%;
}
main .feedback ul li .user .info .name {
    display: flex;
    align-items: center;
    font-size: 22px;
}
main .feedback ul li .user .info .name .vip {
    width: 25px;
    height: 25px;
}
main .feedback ul li .user .info .labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aaa;
    font-size: 16px;
    margin-top: 8px;
}
main .feedback ul li .f_b_text {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
}

/* 服务流程部分 */
main .service_process {
    margin-top: 80px;
}
main .service_process .title_style1 {
    width: 180px;
    margin: 0 auto 30px;
}
main .service_process .title_style1 .logo {
    width: 100%;
}
main .service_process .title_style1 .border {
    width: 100%;
    height: 8px;
    background: #00ADFF;
    margin-top: 10px;
}
main .service_process ul {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 40px 0 10px;
}
main .service_process ul li {
    text-align: center;
    width: 33%;
}
main .service_process ul li img {
    width: 120px;
    height: auto;
}
main .service_process ul li h3 {
    font-size: 26px;
    margin: 10px 0;
}
main .service_process ul li span{
    color: #999999;
}
main .service_process .s_p_banner{
    width: 100%;
    text-align: center;
}
main .service_process .s_p_banner img{
    width: 85%;
}

/* 关于我们部分 */
main .about_us {
    background-color: #00ADFF;
    padding: 50px 80px ;
    margin-top: 80px;
}
main .about_us .title_style2{
    text-align: center;
}
main .about_us .title_style2 img{width: 180px;}
main .about_us .team_logo{
    margin: 50px;
}
main .about_us .team_logo img{width: 100%;}
main .about_us .about_text { 
    color: #fff;font-size: 24px
    ;font-weight: 300;text-align: justify;
    line-height: 1.8;
    padding-bottom: 50px;
}

/* 热门问题部分 */
main .hot_problem .h_p_logo { text-align: center;position: relative;margin: 60px 0 20px;}
main .hot_problem .h_p_logo .logo1 {width: 200px;position: absolute;left: 50%;top: -20px;
margin-left: -100px;}
main .hot_problem .h_p_logo .logo2 {width: 250px;}
main .hot_problem ul li{
    padding: 0 30px;
}
main .hot_problem ul li a{
    border-bottom: 1px solid #bbb;
    display: flex;
    align-items: center;
    padding: 30px 0;
}
main .hot_problem ul li .poster {
    width: 200px;
    height: 130px;
    background-color: #eee;
    border-radius: 10px;
    background-size: contain; /* 保持原始比例，图片将被缩放到适合容器的大小 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    flex-shrink: 0;
    margin-right: 10px;
}
main .hot_problem ul li .text {
    width: 100%;
}
main .hot_problem ul li .text .name {
    font-size: 24px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
main .hot_problem ul li .detail {
    color: #8D959D;
    font-size: 16px;
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
main .hot_problem ul li .icon{
    display: flex;
    align-items: center;
    margin-top: 19px;
}
main .hot_problem ul li .icon .i{
    border-radius: 5px 5px 5px 5px;
    margin-right: 10px;
    color: #097DFF;
    background-color: rgba(228, 242, 255, 1);
    padding: 2px 4px;
}
main .hot_problem ul li .icon .time{
    color: #8D959D;
    font-size: 14px;
}
main .hot_problem .more {
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    font-size: 26px;
}
main .hot_problem .more img{
    width: 20px;
    margin-left: 10px;
}
main .hot_problem .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333333;
    border-radius: 40px;
    padding: 20px 0px;
    width: 500px;
    margin: 30px auto 0;
    font-size: 28px;
    font-weight: bold;
}
main .hot_problem .phone img {
    width: 35px;
    height: 35px;
}

/* 服务区域部分 */
main .service_area {
    background-color: #FFF000;
    margin-top: 50px;
    padding-bottom: 100px;
}
main .service_area .title_style2{
    text-align: center;
    padding: 50px;
}
main .service_area .title_style2 img{width: 180px;}
main .service_area ul {}
main .service_area ul li {
    background-color: #fff;
    width: 400px;
    margin: 10px auto 0;
    line-height: 60px;
    text-align: center;
    font-size: 30px;
    border-radius: 4px;
    font-weight: 500;
}

/* 媒体查询 - 移动端 */
@media screen and (max-width: 767px) {

    /* Header 部分 */
    header nav .header_nav {
        top: 80px;
    }
    header nav .header_nav li a {
        font-size: 16px;
    }
    header .concat {
        width: 200px;
        bottom: 30px;
        margin-left: -100px;
    }

    /* Main 内容部分 */
    main .team {
        width: 120px;
        margin: 40px auto;
    }
    main .feedback{
        margin-top: 40px;
    }
    main .feedback .title_style1 {
        width: 120px;
        margin-bottom: 20px;
    }
    main .feedback ul {
        padding: 0 15px;
    }
    main .feedback ul li {
        padding: 20px;
        margin-bottom: 20px;
    }
    main .feedback ul li .user .avatar {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    main .feedback ul li .user .info .name {
        font-size: 18px;
    }
    main .feedback ul li .f_b_text {
        font-size: 18px;
        margin-top: 15px;
    }

    /* 服务流程部分 */
    main .service_process{
        margin-top: 40px;
    }
    main .service_process .title_style1 {
        width: 120px;
        margin-bottom: 20px;
    }
    main .service_process ul li img {
        width: 80px;
    }
    main .service_process ul li h3 {
        font-size: 18px;
    }
    main .service_process .s_p_banner img {
        width: 100%;
    }

    /* 关于我们部分 */
    main .about_us {
        padding: 30px 40px;
        margin-top: 40px;
    }
    main .about_us .title_style2 img {
        width: 120px;
    }
    main .about_us .about_text {
        font-size: 18px;
        padding-bottom: 30px;
    }

    /* 热门问题部分 */
    main .hot_problem .h_p_logo {
        margin: 40px 0 10px;
    }
    main .hot_problem .h_p_logo .logo1 {
        width: 120px;
        margin-left: -60px;
    }
    main .hot_problem .h_p_logo .logo2 {
        width: 150px;
    }
    main .hot_problem ul li {
        padding: 0 15px;

    }
    main .hot_problem ul li a{
        padding: 15px 0;
    }
    main .hot_problem ul li .poster {
        width: 120px;
        height: 80px;
    }
    main .hot_problem ul li .text .name {
        font-size: 16px;
        font-weight: 500;
    }
    main .hot_problem ul li .detail {
        font-size: 14px;
        margin-top: 2px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        
    }
    main .hot_problem ul li .icon{
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    main .hot_problem ul li .icon .i{
        border-radius: 5px 5px 5px 5px;
        margin-right: 10px;
        color: #097DFF;
        background-color: rgba(228, 242, 255, 1);
        padding: 2px 4px;
        font-size: 10px;
    }
    main .hot_problem ul li .icon .time{
        color: #8D959D;
        font-size: 10px;
    }
    main .hot_problem .more {
        font-size: 18px;
        padding: 15px 0;
    }
    main .hot_problem .more img {
        width: 16px;
    }
    main .hot_problem .phone {
        width: 85%;
        font-size: 18px;
        padding: 12px 0;
    }
    main .hot_problem .phone img {
        width: 25px;
        height: 25px;
    }

    /* 服务区域部分 */
    main .service_area {
        padding-bottom: 50px;
    }
    main .service_area .title_style2 {
        padding: 30px;
    }
    main .service_area .title_style2 img {
        width: 120px;
    }
    main .service_area ul li {
        width: 90%;
        line-height: 45px;
        font-size: 20px;
    }

   
}

/* 媒体查询 - 移动端 */
@media screen and (max-width: 380px) {
    header nav .header_nav li a {
        font-size: 14px;
    }
}