html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
button,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
input,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

button {
    background: transparent;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

strong {
    font-weight: bold;
}

img {
    border: 0;
    max-width: 100%;
    display: inline-block;
}

a {
    display: inline-block;
}

html {
    line-height: initial;
}

/* 文章列表 */
.article-list {
    background-color: #f5f5f5;
    padding-bottom: 15px;
}

.article-list-content {
    width: 1200px;
    margin: 0 auto;
}

.article-list-a {
    display: flex;
    align-items: center;
    height: 52px;
}

.article-list-a,
.article-list-a a {
    font-size: 14px;
    color: #999;
}

.article-list-box {
    display: flex;
    justify-content: space-between;
}

.article-list-left {
    width: 872px;
    background-color: #fff;
    padding: 20px 20px 30px;
    box-sizing: border-box;
}

.article-list-leftA {
    width: 872px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

.article-list-right {
    width: 310px;
}

.article-list-left-title {
    margin-left: 20px;
    margin-right: 15px;
    font-size: 18px;
    color: #333;
    padding-bottom: 9px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}

.article-list-left-title::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 75px;
    border-bottom: 2px solid #0099FF;
}

.article-list-left-box {
    margin: 0 20px;
    margin-top: 7px;
}

.article-list-left-box-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #DDDDDD;
    margin-top: 15px;
    padding-bottom: 16px;
    cursor: pointer;
    align-items: center;
}

.article-list-left-item-img {
    width: 237px;
    height: 158px;
    margin-right: 19px;
    border: 1px solid #EBEBEB;
}

.article-list-left-item-right {
    flex: 1;

}

.article-list-left-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    color: #333;
    margin-top: 4px;
}

.article-list-left-item-tag {
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.article-list-left-item-tag span {
    font-size: 14px;
    color: #999;
}

.article-list-left-item-tag p {
    margin-right: 9px;
    padding: 0 10px;
    height: 29px;
    line-height: 29px;
    font-size: 14px;
    color: #0099FF;
    background: #F1F6FB;
}

.article-list-left-item-content {
    font-size: 14px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 14px;
    line-height: 22px;
}

.article-list-left-item-bottom {
    display: flex;
    align-items: center;
}

.article-list-left-item-bottom p {
    font-size: 12px;
    color: #999;
    margin-right: 43px;
}

.article-list-left-item-number {
    display: flex;
    align-items: center;
}

.article-list-left-item-number img {
    width: 20px;
    height: 12px;
    background: #f5f5f5;
    margin-right: 7px;
}

.article-list-left-item-number span {
    font-size: 12px;
    color: #999;
}

.article-list-left-ul {
    display: flex;
    align-items: center;
    margin-top: 19px;
    justify-content: end;
    padding-right: 30px;
}

.article-list-left-ul li {
    width: 40px;
    /* padding: 0 15px; */
    height: 30px;
    line-height: 28px;
    border: 1px solid #DDDDDD;
    cursor: pointer;
    border-right: none;
    text-align: center;
}

.article-list-left-ul li:last-child {
    border-right: 1px solid #DDDDDD;
}
.article-list-left-ul li:last-child,
.article-list-left-ul li:first-child{
    width: 50px;
}
.article-list-left-ul li a {
    font-size: 14px;
    color: #333;
    width: 100%;
    height: 100%;
}

.article-list-left-ul li:hover {
    background: #0099FF;
}

.article-list-left-ul li:hover a {
    color: #fff;
}

li.article-list-left-ul-active {
    background: #0099FF;
}

li.article-list-left-ul-active a {
    color: #fff;

}

.article-list-right-top {
    background: #394551;
    margin-bottom: 20px;
    padding: 28px;
    padding-bottom: 13px;
}

.article-list-right-bottom {
    background: #fff;
    padding: 19px 17px;
}

.article-list-right-title {
    font-size: 18px;
    color: #FE6100;
    font-weight: bold;
    margin-bottom: 25px;
}

.article-list-right-top ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.article-list-right-top ul li {
    width: 100px;
    height: 35px;
    line-height: 33px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #394551;
    margin-bottom: 15px;
}

.article-list-right-box-text {
    /* display: flex; */
    margin-bottom: 15px;
}

.article-list-right-box-text span:first-child {
    width: 82px;
    font-size: 16px;
    color: #E65800;
    font-weight: bold;
}

.article-list-right-box-text span:last-child {
    flex: 1;
    font-size: 14px;
    color: #fff;
    line-height: 25px;
}

.article-list-right-box {
    margin-top: 5px;
}

.article-list-right-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;

}

.article-list-right-box-btn a {
    width: 100px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 18px;
    border-radius: 6px;
}

.article-list-right-box-btn a:hover {
    opacity: .8;
}

.article-list-right-box-btn a:first-child {
    margin-right: 25px;
    background: #E65800;
    color: #fff;
}

.article-list-right-box-btn a:last-child {
    background: #FFE100;
    color: #394551;
}

.article-list-right-box-gg {
    font-size: 12px;
    color: #fff;
    text-align: right;
    margin-top: 8px;
    opacity: .7;
    margin-right: -15px;
}

.article-list-bottom-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 19px;
}

.article-list-right-bottom .article-list-left-title {
    margin: 0;
    border-bottom: 0;
}

.article-list-right-bottom-box {
    text-align: center;
    background: #F8F8F8;
    margin-bottom: 15px;
    position: relative;
}
.article-list-right-bottom-box .guangg{
   position: absolute;
	top: 0;
	left: 0;
    font-size: 14px;
	z-index: 9999;
	color: #fff;
	width: 40px;
	height: 20px;
	background-color: #7b7b7b;
	opacity: 0.8;
	line-height: 20px;
	text-align: center;
}
.article-list-right-bottom-box a img {
    width: 264px;
    height: 264px;
    margin-top: 6px;
}

.article-list-bottom-title1 {
    font-size: 19px;
    color: #333;
    margin-top: 8px;
    margin-bottom: 4px;
}

.article-list-bottom-text {
    font-size: 17px;
    color: #999;
    margin-bottom: 18px;
}

.article-list-bottom-price {
    color: #FE6100;
    font-size: 19px;
    padding-bottom: 27px;
}

.article-list-right-bottom-box:last-child {
    margin-bottom: 0;
}

/* 维修网点 */
.branches-top-box {
    padding: 15px 74px 15px 27px;
    background-color: #fff;
}

.branches-top-item:last-child {
    border-bottom: none;
}

.branches-top-item {
    display: flex;
    border-bottom: 1px dashed #DDDDDD;
    padding-top: 15px;
    padding-bottom: 5px;
}

.branches-top-item1 {
    display: block;
}

.branches-top-item-flex {
    display: flex
}

.branches-top-item p {
    font-size: 16px;
    color: #333;
}

.branches-top-item-text {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    /* height: 65px; */
    overflow: hidden;
}
.branches-top-item-text a:hover{
    background-color: #0099FF;
    color: #FFFFFF;
}
.branches-top-item-text a {
    height: 27px;
    line-height: 25px;
    padding: 0 12px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    margin-bottom: 10px;
}

.branches-top-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 16px 0 8px;
}
.branches-top-item-text .on {
    background-color: #0099FF;
    color: #FFFFFF;
}

.branches-top-item-content p {
    font-size: 14px;
    color: #0099FF;
}

.branches-top-item-content img {
    width: 10px;
    height: 5px;
    margin-left: 6px;
}

a.activeA {
    background-color: #0099FF;
    color: #fff;
}

.branches-ts {
    font-size: 14px;
    color: #666666;
    line-height: 40px;
    background-color: #fff;
    padding: 0 27px;
    margin: 20px 0;
}

.branches-ts span {
    color: #0099FF
}

.branches-content {
    display: flex;
    justify-content: space-between;
}

.branches-left {
    background-color: #fff;
}

.branches-left {
    width: 872px;
    padding: 0 20px;
    padding-bottom: 12px;
}

.branches-right {
    width: 310px;
}

.branches-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    margin-top: 16px;
}

.branches-title::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 75px;
    border-bottom: 2px solid #0099FF;
}

.branches-title p {
    font-size: 18px;
    color: #333;
}

.branches-title span {
    font-size: 16px;
    color: #999;
}

.branches-item {
    margin-top: 24px;
    padding-bottom: 27px;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.branches-ite-img {
    width: 201px;
    height: 135px;
    margin-right: 18px;
}

.branches-ite-img img {
    width: 100%;
    height: 100%;
}
.branches-ite-img1 p{
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
}
.branches-box .branches-item:nth-child(1) .branches-ite-img1 {
    background-color: #C96F70;
}

.branches-box .branches-item:nth-child(2) .branches-ite-img1 {
    background-color: #5986C2;
}

.branches-box .branches-item:nth-child(3) .branches-ite-img1 {
    background-color: #C96F70;
}

.branches-box .branches-item:nth-child(4) .branches-ite-img1 {
    background-color: #C7AE96;
}

.branches-box .branches-item:nth-child(5) .branches-ite-img1 {
    background-color: #7BAAA2;
}

.branches-box .branches-item:nth-child(6) .branches-ite-img1 {
    background-color: #94A9C5;
}

.branches-box .branches-item:nth-child(7) .branches-ite-img1 {
    background-color: #DCA968;
}

.branches-box .branches-item:nth-child(8) .branches-ite-img1 {
    background-color: #C96F70;
}

.branches-box .branches-item:nth-child(9) .branches-ite-img1 {
    background-color: #7BAAA2;
}

.branches-box .branches-item:nth-child(10) .branches-ite-img1 {
    background-color: #C96F70;
}

.branches-item-right {
    flex: 1;
}

.branches-item-righ-title {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.branches-item-right-text {
    font-size: 14px;
    color: #999999;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.branches-right-main {
    margin-top: 20px;
}

.branches-right-main {
    background-color: #FFFAF6;
    padding: 17px;
    padding-bottom: 5px;
}

.branches-right-main-title {
    font-size: 16px;
    color: #E6454A;
    font-weight: bold;
    margin-bottom: 15px;
}

.branches-right-ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.branches-right-ul li {
    width: 65px;
    line-height: 28px;
    text-align: center;
    background-color: #FFE5E5;
    font-size: 12px;
    color: #333;
    margin-bottom: 6px;
}

.branches-right-text {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 12px;
}

.branches-right-text p {
    color: #333;
    font-weight: bold;
}

.branches-right-text span {
    color: #666;
}

.branches-right-btn {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.branches-right-btn a {
    width: 133px;
    line-height: 35px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    border-radius: 3px;
}

.branches-right-btn a:nth-child(1) {
    margin-right: 7px;
    background: #E6454A;
}

.branches-right-btn a:nth-child(2) {
    background: #C39869;
}

.article-list-right-box-gg1 {
    color: #2F80FF;
    margin-right: 0
}

/* 网点详情 */
.article-list-left-box1 a:last-child .article-list-left-box-item {
    border-bottom: 0;
}

.article-list-left-box1 {
    background-color: #f5f5f5;
}

.details-main {
    background-color: #fff;
    padding: 17px 20px 0 20px
}
.details-mainA{
    background-color: #fff;
    padding: 17px 20px 50px 20px
}

.details-top {
    display: flex;
    background-color: #fff;
    padding: 36px 0 37px 33px;
    margin-bottom: 20px;
}

.details-topA {
    background-color: #fff;
    padding: 20px;
}

.details-top-img {
    width: 353px;
    height: 235px;
    margin-right: 15px;
}

.details-top-img img {
    width: 100%;
    height: 100%;
}

.branches-item-righ-title1 {
    margin-bottom: 27px;
}

.branches-item-right-text1 {
    font-size: 16px
}

.branches-item-right-text1 span:first-child,
.detail-top-jj span {
    color: #333;
}

.detail-top-jj {
    font-size: 16px;
    color: #999;
    margin-top: 5px;
    line-height: 25px;
}

.details-main-wxpl {
    margin-bottom: 20px;
}

.ranches-top-item-text-wxpl {
    padding: 22px 0;
    padding-bottom: 12px;
}

.ranches-top-item-text-wxpl a {
    margin-left: 0;
    margin-right: 6px;
}

/* 地图 */
#container {
    width: 832px;
    height: 393px;
}

/* 服务项目 */
.service-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 28px 0 8px 8px;
    margin-top: 20px;
}

.service-box-item {
    width: 213px;
    padding: 0 5px;
    background: #F8F8F8;
    padding-bottom: 18px;
    margin-bottom: 22px;
    margin-left: 20px;
    position: relative;
}
.guangg{
    position: absolute;
	top: 0;
	left: 0;
    font-size: 14px;
	z-index: 9999;
	color: #fff;
	width: 40px;
	height: 20px;
	background-color: #7b7b7b;
	opacity: 0.8;
	line-height: 20px;
	text-align: center;
}
.service-box-item-img {
    width: 202px;
    height: 202px;
    margin-bottom: 6px;
    margin-top: 6px;
}

.service-box-item-img img {
    width: 100%;
    height: 100%;
}

.service-box-item-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
}

.service-box-item-text {
    font-size: 14px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;

}

.service-box-item-price {
    font-size: 18px;
    color: #FE6100;
    margin-top: 16px;
    text-align: center;

}

/* 服务详情 */
.service-main {
    background-color: #fff;
    padding-top: 22px;
}

.service-swiper {
    padding: 28px;
    background-color: #fff;
    margin-bottom: 20px;
    display: flex;
}

.service-swiper-left {
    width: 544px;
    margin-right: 18px;
}

.service-swiper-right {
    flex: 1;
}

.service-swiper-right-top {
    border-bottom: 1px dashed #DDDDDD;
}

.service-swiper-right-title {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.overflow {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

.service-swiper-right-text {
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service-swiper-right-price {
    display: flex;
    align-items: center;
}

.service-swiper-right-price p {
    color: #FE6100;
    font-size: 20px;
    margin-right: 29px;
}

.service-swiper-right-price p span {
    font-size: 32px;
}

.service-swiper-right-price a {
    font-size: 16px;
    color: #333;
}

.service-swiper-right-bottom,
.service-swiper-right-number,
.service-swiper-ul {
    display: flex;
    align-items: center;
}

.service-swiper-right-bottom {
    margin-top: 16px;
}

.service-swiper-right-number {
    font-size: 16px;
}

.service-swiper-right-number:last-child {
    margin-left: 45px;
}

.service-swiper-right-number p {
    color: #333;
}

.service-swiper-right-number span {
    color: #0099FF;
}

.service-swiper-ul {
    justify-content: space-between;
    margin-top: 26px;
    margin-bottom: 29px;
}

.service-swiper-ul li img {
    width: 21px;
    height: 21px;
    margin-right: 7px;
}

.service-swiper-ul li {
    line-height: 54px;
    padding: 0 14px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.service-swiper-ul li span {
    font-size: 16px;
    color: #333;
}

.service-swiper-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-swiper-bottom a {
    line-height: 39px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.service-swiper-bottom a:nth-child(1) {
    width: 149px;
    background-color: #FE6100;
}

.service-swiper-bottom a:nth-child(2) {
    width: 256px;
    background-color: #0099FF;
}

.service-swiper-bottom a:nth-child(3) {
    width: 149px;
    border: 1px solid #0099FF;
    color: #0099FF;
}
.service-swiper-bottom a:hover{
    background-color: #0099FF;
    color: #fff;
 }
 .service-swiper-bottom a:nth-child(2):hover{
     opacity: .8;
 }
.swiper {
    width: 100%;
    /* height: 100%; */
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: 400px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper-top {
    height: 385px;
}

.mySwiper-bottom {
    margin-top: 10px;
    height: 92px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #000;
    opacity: .5;
    height: 92px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 10px !important;
}

.service-rxtj {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.service-rxtj-left {
    width: 310px;
    background-color: #fff;
    padding-bottom: 19px;
}

.service-rxtj-right {
    width: 872px;
    background-color: #fff;
}

.service-box1 {
    padding: 0 17px;
}

.service-box-item1 {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 19px;
}

.service-box-item1 .service-box-item-img {
    width: 100%;
    height: 264px;
}

.service-rxtj-right-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    border-bottom: 1px solid #EBEBEB;
    ;
}

.service-rxtj-right-a {
    display: flex;
    align-items: center;
    height: 100%;

}

.service-rxtj-right-a+a {
    width: 180px;
    line-height: 50px;
    text-align: center;
    background-color: #0099FF;
}

.service-rxtj-right-a a {
    width: 180px;
    height: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    color: #333333;
}

.service-rxtj-right-a-text {
    color: #fff !important;
    background-color: #0099FF;
}

.service-rxtj-xq {
    padding: 33px 57px;
}

.service-rxtj-xq img {
    width: 100%;
    height: 100%;
}

.service-rxtj-sfbz {
    padding: 0 20px;
}

table {
    border-spacing: 0;
    width: 837px;
    margin-top: 20px;
}

table tr {
    line-height: 50px;
    text-align: center;
}

table tr th {
    color: #333;
    font-size: 16px;
}

table tr td {
    width: 50%;
    color: #666;
    font-size: 14px;
}

.service-fwpj {
    padding: 0 20px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.service-fwpj-box {
    margin-top: 16px;
}

.service-fwpj-item {
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    padding-bottom: 10px;
    margin-top: 10px;
}

.service-fwpj-item:last-child {
    border-bottom: none;
}

.service-fwpj-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.service-fwpj-item-img img {
    width: 100%;
    height: 100%;
}

.service-fwpj-item-title,
.service-fwpj-item-name {
    display: flex;
    align-items: center;
}

.service-fwpj-item-title {
    justify-content: space-between;
}

.service-fwpj-item-name span {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.service-fwpj-item-name p {
    padding: 0 5px;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    margin-left: 10px;
    background-color: #0099FF;
    border-radius: 3px;
}

.service-fwpj-item-time {
    font-size: 12px;
    color: #999;
}

.service-fwpj-img {
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.service-fwpj-img p {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url('../img/star.png') no-repeat center;
    background-size: cover;
}

.service-fwpj-item-content {
    font-size: 14px;
    color: #666;
    line-height: 23px;
    padding-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-fwpj-item-content-img {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service-fwpj-item-content-img img {
    width: 120px;
    height: 120px;
    margin-right: 10px;
}

.service-fwpj-item-right {
    flex: 1;
}

.branches-right-top {
    background-color: #fff;
    padding: 10px 17px;
}

.branches-right-top-content {
    width: 276px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.branches-right-hot-recommended {
    background-color: #fff;
    margin: 20px auto;
    padding: 10px 17px;
}

.branches-right-hot-recommended-content {
    width: 280px;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #fff;
    overflow: auto;
}

.problem-container-details {
    width: 872px;
    /* height: 353px; */
    background: #FFFFFF;
    opacity: 1;
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 16px;
}

.problem-container-details-content {
    width: 788px;
    height: 235px;
    background: #F1F6FB;
    opacity: 1;
    border-radius: 0px;
    margin: 16px auto;
    padding: 25px;
}

.problem-container-details-content-text {
    font-size: 16px;
    color: #333333;
    line-height: 25px;
}

.problem-container-details-content-img-box {
    width: 221px;
    height: 147px;
    margin-top: 15px;
}

.problem-container-details-content-img-box img {
    width: 100%;
    height: 100%;
}

.problem-container-details-foot-text {
    display: flex;
    justify-content: space-between;
}

.problem-container-details-foot-text span {
    font-size: 14px;
    color: #999999;
}

.answer-container-details-content {
    width: 820px;
    padding: 18px 0 0;
    border-top: 1px dashed #DDDDDD;
}

.answer-container-details-content-top {
    display: flex;
    justify-content: space-around;
}

.answer-container-details-img {
    min-width: 19px;
    height: 19px;
    margin-right: 5px;
}

.answer-container-details-img img {
    width: 100%;
    height: 100%;
}

.details-sorting {
    font-size: 18px;
    color: #333333;
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
}

.problem-container-details-answer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-text {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-top: 20px;
}

.contact-phone {
    color: #0099FF;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.brand-container-top {
    width: 1200px;
    height: 282px;
    background-color: #FFFFFF;
    padding: 36px 23px 34px 33px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.brand-container-top-img-box {
    min-width: 318px;
    height: 100%;
}

.brand-container-top-img-box img {
    width: 100%;
    height: 100%;
}

.brand-container-top-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 24px;
    height: 100%;
    overflow: hidden;
}

.brand-container-top-content-top {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}

.brand-container-top-content-text {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
}

.brand-container-service {
    width: 1200px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand-container-service-contetnt {
    width: 1166px;
    margin: 19px auto 0;
}
.brand-container-service-contetntA{
    width: 837px;
    margin: 19px auto 0;
}
.container-service-item-contetnt {
    width: 100%;
    margin-top: 21px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.service-box-item-btn {
    width: 81px;
    height: 31px;
    background: #0099FF;
    opacity: 1;
    border-radius: 0px;
    margin: 11px auto 0;
    font-size: 14px;
    line-height: 31px;
    text-align: center;
    color: #FFFFFF;
}

.service-box-item-btn:hover {
    opacity: 0.7;
}

.container-service-more {
    width: 100%;
    margin: 10px auto;
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.container-service-more-text {
    font-size: 14px;
    color: #0099FF;
  
    opacity: 1;
}
.container-service-more-img{
    width: 10px;
    height: 5px;
    margin-left: 12px;
    display: flex;
    align-items: center;
}
.container-service-more-img img{
    width: 100%;
    height: 100%;
}
.brand-item-container{
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: 0;
    display: flex;
}
.brand-item-container-left{
    width: 5%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #999999;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    background-color: #DDDDDD;
}
.brand-item-container-right-item-img{
    width: 100px;
    height: 40px;
}
.brand-item-container-right-item-img img{
    width: 100%;
    height: 100%;
}
.brand-item-container-right{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    
}
.brand-item-container-right-item{
    margin: 10px;
    width: 100px;
}
.brand-item-container-right-item-text{
    color: #999999;
    margin-top: 5px;
    font-size: 12px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.search-service-box{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.active-height{
    height:74px
}
.active-rotate{
    transform: rotate(180deg)
}
.branches-box-xg .branches-item-right-text{
    margin-top: 0;
    line-height: 24px;
}
.branches-box-xg .branches-item-righ-title{
    margin-bottom: 10px;
}
.branches-box-xg .branches-ite-img img{
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

/* 404 */
.error-box{
    margin-top: 158px;
    text-align: center;
}
.error-box img{
    width: 121px;
    height:168px;
    margin:0 auto;
}
.error-box P{
    font-size: 16px;
    color: #999999;
    opacity: 0.6;
    margin-bottom: 20px;
    text-align:center;
}
.error-box a{
    width: 80px;
    height: 30px;
    line-height:28px;
    text-align:center;
    border: 1px solid #008FEE;
    border-radius: 18px;
    font-size: 14px;
    color: #008FEE;
    margin:0 auto;
}
.answerList-item-top-tag-xg{
    font-size: 16px;
}

a.list-item-link{
    width:100%;
}