/**!
 * index.css
* date：2025-09-18
* author：方焱
*/
body {
    background: #f5f5f5;
    padding-bottom: 30px;
}

.title_aaa {
    position: relative;
    margin: 0 auto;
    height: 90px;
    font-size: 28px;
    color: #1b4292;
    font-weight: 700;
    line-height: 90px;
    background:  no-repeat center center;
    text-align: center;
}

.servicelist {
    background-color: #fff;
    padding: 25px;
    padding-bottom: 0;
}

.tabs1 {
    display: flex;
}

.tab1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 60px) / 3);
    height: 66px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    color: #1b4292;
}

.tab1:not(:last-child) {
    margin-right: 30px;
}

.tab1 img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.tab1 span {
    font-size: 24px;
    font-weight: 700;
}

.tab1.active1 {
    background: #1b4292;
    border-color: #1b4292;
    color: #fff;
}

.list1 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.list1_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 100px) / 4);
    height: 64px;
    background: #f5f5f5;
    margin-bottom: 25px;
    font-size: 16px;
    color: #032131;
    text-align: center;
}

.list1 a {
    line-height: 20px;
}

.list1_item:not(:nth-child(4n)) {
    margin-right: 25px;
}

.list1_item:hover {
    color: #fff;
}

.box {
    display: flex;
    margin-top: 30px;
    /* height: 424px; */
}

.box1 {
    background-color: #fff;
    margin-right: 25px;
    width: 510px;
    /* padding: 25px; */
    padding-bottom: 0;
    /* height: 424px; */
}

.box_title {
    font-size: 24px;
    color: #000;
    text-align: center;
    font-weight: 600;
    line-height: 22px;
    padding-top: 20px;
}

.hotservice {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.service_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: 140px;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    margin-bottom: 25px;
    padding-top: 17px;
    cursor: pointer;
    font-size: 16px;
    color: #666666;
}

.service_item:hover {
    border: 1px solid #3b6280;
    background-color: #fff;
    font-weight: 600;
    color: #666;
}

.service_item:not(:nth-child(3n)) {
    /* margin-right: 20px; */
}

.service_item img {
    width: 64px;
    height: 64px;
    margin-bottom: 3px;
}

.service_item:hover img {
    transform: scale(0.9, 0.9);
    transition: all 0.3s;
}

.service_item div {
    line-height: 22px;
    text-align: center;
}

.box2 {
    border: 1px solid #eaeaea;
    width: 665px;
}

.tabs2 {
    display: flex;
    height: 60px;
}

.tab2 {
    width: calc(100% / 3);
    line-height: 60px;
    text-align: center;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    background: #faf9f9;
    font-size: 20px;
    font-weight: 700;
    color: #b0a1a1;
}

.tab2:last-child {
    border-right: 0;
}

.tab2:hover,
.active2 {
    background-color: #fff;
    border-bottom: 0;
    color: #000000;
}


.list2 {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    background-color: #fff;
    /* padding: 24px; */
    padding-left: 24px;
    padding-top: 25px;
    padding-bottom: 4px;
    height: calc(100% - 60px - 24px - 6px);
}

.list2_item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc((100% - 60px) / 3);
    height: 60px;
    background: #f5f5f5;
    font-size: 16px;
    color: #032131;
    cursor: pointer;
    margin-bottom: 20px;
}

.list2 a {
    line-height: 20px;
}

.list2_item:not(:nth-child(3n)) {
    margin-right: 20px;
}

.list2_item:hover {
    color: #fff;
}

.gray_btn {
    -webkit-transform: perspective(1px) translatez(0);
    transform: perspective(1px) translatez(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.gray_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transform: scalex(0);
    transform: scalex(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.gray_btn:hover,
.gray_btn:focus,
.gray_btn:active {
    color: white;
}

.gray_btn:hover:before,
.gray_btn:focus:before,
.gray_btn:active:before {
    -webkit-transform: scalex(1);
    transform: scalex(1);
}