﻿@charset "utf-8";
/*---------------------------------------------------------
service styles
---------------------------------------------------------*/

#container {
    width: 1200px;
    margin: 0 auto;
}

.row_title {
    height: 36px;
    line-height: 34px;
    border-bottom: 1px solid #DDDDDD;
    background-color: aliceblue;
    margin: 20px 0;
}

.row_title .title_left {
    width: 10%;
    text-align: center;
    background: #20528f;
    color: #fff;
    font-weight: bold;
}

.row_title .title_right li {
    font-size: 18px;
    color: #474747;
    cursor: pointer;
    margin: 0px 15px;
}

.row_title .title_right .current {
    color: #0a68d2;
    border-bottom: 2px solid #0a68d2;
}

.row_list_service ul {
    display: flex;
    flex-wrap: wrap;
}

.row_list_service li a {
    width: 100%;
    text-align: center;
    color: #2b2b2b;
    border-radius: 5px;
    display: inline-block;
    padding: 12px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.row_list_service li a:hover {
    color: #20528f;
}

.row_list_service div:first-of-type li,
.row_list_service div:nth-of-type(2) li {
    width: 16.6666%;
    padding: 10px 7px;
}

.row_list_service div:first-of-type li a {
    background: #b5deff;
}

.row_list_service div:first-of-type li:nth-child(even) a {
    background: #dbefff;
}

.row_list_service div:nth-of-type(2) li a {
    background: #edf0f4;
}

.container_row2 {
    padding: 5px 0;
}

/* 手机端 */
@media (max-width: 480px) {
    body {
        background: #fff;
    }

    #container {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }

    .row_title .title_left {
        width: 25%;
    }

    .row_title .title_right li {
        font-size: 16px;
    }

    .row_list_service div:first-of-type li,
    .row_list_service div:nth-of-type(2) li {
        width: 50%;
    }

    .container_row2 {
        width: 100%;
        padding: 0;
    }
}