﻿@charset "UTF-8";
/* Reset css*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial, "微软雅黑", "宋体";
    font-size: 12px;
    color: #434343;
}

body {
    _overflow: auto;
    _height: 100%;
    margin: 0 auto;
}

html {
    _overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-variant: normal;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol,
li,
dl,
dt,
dd {
    list-style: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

button,
input,
select,
textarea {
    font: 12px/1.5 tahoma, arial, sans-serif;
    vertical-align: middle;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    zoom: 1;
}

/*Vue渲染时，清除{{}}显示*/
[v-cloak] {
    display: none;
}

/*a*/
a {
    text-decoration: none;
}

input[type=button],
input[type=submit] {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

button {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

select {
    background-color: transparent;
    border-color: transparent;
    -webkit-appearance: none;
}

/* 设置滚动条的样式 */
.RemoveScrollbar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* 滚动槽 */
.RemoveScrollbar::-webkit-scrollbar-track {
    height: 0;
}

/*清除IOS overflow:scroll与overflow:auto 的滚动卡顿*/
.RemoveRollCar {
    -webkit-overflow-scrolling: touch;
}

/*两行省略*/
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/*一行省略*/
.one_line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.more_line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.three_line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

textarea {
    resize: none;
}

a:hover {
    text-decoration: none;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 3px 3px 0px 5px;
    display: none;
}

img,
input {
    border: none;
}

.ico {
    pointer-events: none;
}

p {
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0rem;
    -webkit-margin-end: 0rem;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.iconcenter {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    display: -webkit-flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.float {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    display: -webkit-flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.right {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    display: -webkit-flex !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.all {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    display: -webkit-flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

html,
body {
    background-color: #f6f6f6;
    background: #f6f6f6;
}

.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #9398a2;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #9398a2;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #9398a2;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #9398a2;
}

.model_class_zindex {
    z-index: 9999999999999;
}

.justify {
    display: block !important;
    text-align: justify;
    text-justify: distribute-all-lines;
    /*ie6-8*/
    text-align-last: justify;
    /* ie9*/
    -moz-text-align-last: justify;
    /*ff*/
    -webkit-text-align-last: justify;
    /*chrome 20+*/
}

.paddingRight {
    padding-right: 0 !important;
}

.bg {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* .van-toast--default{
  width: 2.4rem!important;
    padding: .4rem!important;
    min-height: 2.2rem!important;
    font-size:0.3rem!important;
}
.van-toast__icon{
  font-size: 1.28rem!important;
} */
/*单位转换*/
#contact {
    width: 10rem;
}

    #contact .head {
        width: 10rem;
        height: 4.26667rem;
        /* background: #9398a2; */
        padding: 0.66667rem 0.50667rem 0;
    }

        #contact .head .link {
            width: 2.33333rem;
            height: 0.72rem;
            border: 1px solid #fff;
            border-radius: 0.05333rem;
            padding: 0 0.13333rem;
            font-size: 0.32rem;
            color: #fff;
            line-height: 1;
        }

            #contact .head .link i {
                display: block;
                width: 0.45333rem;
                height: 0.45333rem;
                background: url("/images/email.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: 0.08rem;
            }

        #contact .head h2 {
            width: 100%;
            font-size: 0.50667rem;
            line-height: 1;
            color: #fff;
            margin-top: 0.4rem;
            font-weight: normal;
        }

        #contact .head .float {
            width: 100%;
            margin-top: 0.58667rem;
        }

            #contact .head .float .search {
                width: 5.06667rem;
                height: 0.8rem;
                background: #fff;
                color: #333;
                position: relative;
                padding-left: 0.26667rem;
            }

                #contact .head .float .search i {
                    display: block;
                    width: 0.4rem;
                    height: 0.4rem;
                    background-image: url("/Content/images/search.png");
                    background-size: 100% 100%;
                    background-position: center center;
                }

                #contact .head .float .search input {
                    width: 4.4rem;
                    color: #333;
                    padding-left: 0.26667rem;
                }

            #contact .head .float .city {
                width: 3.2rem;
                height: 0.8rem;
                background: #fff;
                position: relative;
                padding-left: 0.13333rem;
            }

                #contact .head .float .city input {
                    width: 2.66667rem;
                    height: 100%;
                    color: #333;
                }

                #contact .head .float .city::before {
                    content: '';
                    width: 0;
                    height: 0;
                    border-left: 0.16rem solid transparent;
                    border-right: 0.16rem solid transparent;
                    border-top: 0.16rem solid #999;
                    position: absolute;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
                    right: 0.13333rem;
                }

    #contact .lists {
        width: 100%;
        padding-top: 0.26667rem;
    }

        #contact .lists .list {
            width: 100%;
            padding: 0 0.4rem;
        }

            #contact .lists .list .item {
                width: 100%;
                background: #fff;
                padding: 0.21333rem 0.26667rem 0.37333rem;
                margin-bottom: 0.26667rem;
            }

                #contact .lists .list .item .item-head {
                    display: block;
                    width: 100%;
                    position: relative;
                    padding-right: 0.4rem;
                }

                    #contact .lists .list .item .item-head .title {
                        font-size: 0.45333rem;
                        color: #333;
                        line-height: 1;
                    }

                    #contact .lists .list .item .item-head .path {
                        font-size: 0.34667rem;
                        color: #999;
                        line-height: 1;
                        margin-top: 0.18667rem;
                    }

                    #contact .lists .list .item .item-head::before {
                        content: '';
                        width: 0.4rem;
                        height: 0.4rem;
                        background: url("/Content/images/right_list.png") no-repeat;
                        background-position: center center;
                        background-size: 100% 100%;
                        position: absolute;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        transform: translateY(-50%);
                        right: 0;
                    }

                #contact .lists .list .item .fn {
                    width: 100%;
                    padding: 0 0.53333rem;
                    margin-top: 0.4rem;
                }

                    #contact .lists .list .item .fn a {
                        width: 3.06667rem;
                        height: 0.64rem;
                        border: none;
                        padding: 0 0.13333rem;
                        font-size: 0.32rem;
                        color: #fff;
                        line-height: 1;
                        background: #0b5baa;
                        font-weight: normal;
                        font-style: normal;
                        padding-left: 0.45333rem;
                    }

                        #contact .lists .list .item .fn a i {
                            display: block;
                            width: 0.45333rem;
                            height: 0.45333rem;
                            background: url("/Content/images/phone.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: 0.08rem;
                        }

                    #contact .lists .list .item .fn .gps {
                        width: 3.06667rem;
                        height: 0.64rem;
                        border: none;
                        padding: 0 0.13333rem;
                        font-size: 0.32rem;
                        color: #0b5baa;
                        line-height: 1;
                        border: 1px solid #0b5baa;
                        padding-left: 0.45333rem;
                    }

                        #contact .lists .list .item .fn .gps i {
                            display: block;
                            width: 0.42667rem;
                            height: 0.42667rem;
                            background: url("/Content/images/path.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: 0.08rem;
                        }

#contact-detail {
    width: 10rem;
    padding: 2.66667rem 0.50667rem 0;
}

    #contact-detail .head {
        width: 10rem;
        height: 4.26667rem;
        background: blue;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    #contact-detail .content {
        width: 100%;
    }

        #contact-detail .content .detail {
            width: 100%;
            height: 2.66667rem;
            position: relative;
            background: #fff;
            padding-top: 1.66667rem;
        }

            #contact-detail .content .detail img {
                display: block;
                width: 1.86667rem;
                height: 1.86667rem;
                background: #9398a2;
                border-radius: 50%;
                border: 1px solid #0b5baa;
                position: absolute;
                top: -0.93333rem;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            #contact-detail .content .detail h4 {
                width: 100%;
                text-align: center;
                line-height: 1;
                font-size: 0.42667rem;
                color: #333;
                padding: 0 0.26667rem;
            }

        #contact-detail .content .c {
            width: 100%;
            padding: 0.26667rem 0.24rem;
            background: #fff;
            margin-top: 0.26667rem;
        }

            #contact-detail .content .c a {
                display: block;
                width: 5.6rem;
                font-size: 0.32rem;
                color: #333;
                line-height: 0.45333rem;
            }

            #contact-detail .content .c .iconcenter {
                width: 0.66667rem;
                height: 0.66667rem;
                border-radius: 50%;
                background: #0b5baa;
            }

                #contact-detail .content .c .iconcenter i {
                    display: block;
                    width: 0.42667rem;
                    height: 0.42667rem;
                    background: url("/Content/images/phone.png") no-repeat;
                    background-size: 100% 100%;
                    background-position: center center;
                }

            #contact-detail .content .c .path {
                width: 100%;
            }

            #contact-detail .content .c .path_detail {
                width: 6.13333rem;
                font-size: 0.32rem;
                color: #333;
                line-height: 0.45333rem;
            }

            #contact-detail .content .c .gps {
                width: 3.06667rem;
                height: 0.64rem;
                border: none;
                padding: 0 0.13333rem;
                font-size: 0.32rem;
                color: #0b5baa;
                line-height: 1;
                border: 1px solid #0b5baa;
                padding-left: 0.45333rem;
            }

                #contact-detail .content .c .gps i {
                    display: block;
                    width: 0.42667rem;
                    height: 0.42667rem;
                    background: url("/Content/images/path.png") no-repeat;
                    background-size: 100% 100%;
                    background-position: center center;
                    margin-right: 0.08rem;
                }

        #contact-detail .content .no-c {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        #contact-detail .content .name {
            width: 2.16rem;
            padding-left: 0.18667rem;
            font-size: 0.37333rem;
            color: #999;
            line-height: 0.45333rem;
        }

        #contact-detail .content .gps-padding {
            width: 100%;
            padding-left: 2.16rem;
            margin-top: 0.13333rem;
        }

#contact-info {
    width: 10rem;
    padding: .266667rem .4rem 0;
}

    #contact-info .head {
        display: block;
        width: 10rem;
        height: 4.26667rem;
        background: blue;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    #contact-info .content {
        width: 100%;
        height: 4.266667rem;
        position: relative;
    }

        #contact-info .content .ico {
            display: block;
            width: 2.346667rem;
            height: 2.346667rem;
            border: 1px solid #fff;
            border-radius: 50%;
            background: url("/images/email.png") no-repeat;
            background-size: .853333rem .853333rem;
            background-position: center center;
            margin: 0 auto;
        }

        #contact-info .content h4 {
            font-size: .48rem;
            color: #fff;
            text-align: center;
            line-height: 1;
            margin-top: .506667rem;
        }

    #contact-info .info {
        display: block;
        width: 100%;
        padding-top: .373333rem;
    }

        #contact-info .info input {
            display: block;
            width: 100%;
            height: 1.333333rem;
            padding-left: .24rem;
            font-size: .4rem;
            color: #333;
            margin-bottom: .373333rem;
        }

        #contact-info .info textarea {
            display: block;
            width: 100%;
            height: 4rem;
            background: #fff;
            padding: .32rem;
            color: #333;
            font-size: .4rem;
            line-height: .586667rem;
            margin-bottom: .373333rem;
            border: none;
        }

        #contact-info .info .submit {
            display: block;
            width: 5.12rem;
            height: 1.066667rem;
            border: none;
            outline: none;
            background: #0b5baa;
            color: #fff;
            text-align: center;
            line-height: 1.066667rem;
            border-radius: .186667rem;
            font-size: .4rem;
            margin: 0 auto;
        }

#join {
    width: 10rem;
}

    #join .head {
        width: 10rem;
        height: 4.26667rem;
        background: #9398a2;
        padding: 0.66667rem 0.50667rem 0;
    }

        #join .head h2 {
            width: 100%;
            font-size: 0.50667rem;
            line-height: 1;
            color: #fff;
            margin-top: 0.4rem;
            font-weight: normal;
            text-align: center;
        }

        #join .head .float {
            width: 100%;
            margin-top: 0.58667rem;
        }

            #join .head .float .search {
                width: 100%;
                height: 0.8rem;
                background: #fff;
                color: #333;
                position: relative;
                padding-left: 0.26667rem;
            }

                #join .head .float .search i {
                    display: block;
                    width: 0.4rem;
                    height: 0.4rem;
                    background-image: url("/Content/images/search.png");
                    background-size: 100% 100%;
                    background-position: center center;
                }

                #join .head .float .search input {
                    width: 4.4rem;
                    color: #333;
                    padding-left: 0.26667rem;
                }

    #join .select {
        width: 100%;
        padding: .4rem;
    }

        #join .select .city {
            width: 30%;
            height: 0.8rem;
            background: #fff;
            position: relative;
            padding-left: 0.13333rem;
        }

            #join .select .city input {
                width: 2.66667rem;
                height: 100%;
                color: #333;
            }

            #join .select .city select {
                display: block;
                width: 2.666667rem;
                color: #333;
                height: 100%;
            }

            #join .select .city::before {
                content: '';
                width: 0;
                height: 0;
                border-left: 0.16rem solid transparent;
                border-right: 0.16rem solid transparent;
                border-top: 0.16rem solid #999;
                position: absolute;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0.13333rem;
            }

    #join .lists {
        width: 100%;
    }

        #join .lists .list {
            width: 100%;
            padding: 0 0.4rem;
            margin-bottom: .186667rem;
        }

            #join .lists .list .item {
                display: block;
                width: 100%;
                background: #fff;
                padding-top: .466667rem;
            }

                #join .lists .list .item .title {
                    width: 100%;
                    font-size: .346667rem;
                    color: #333;
                    text-align: left;
                    padding: 0 .4rem;
                }

                #join .lists .list .item .t {
                    width: 100%;
                    padding: 0 .4rem .426667rem .4rem;
                    border-bottom: 1px solid #eeeeee;
                    margin-top: .4rem;
                }

                    #join .lists .list .item .t .tag {
                        padding: .106667rem .16rem;
                        background: #f6f6f6;
                        color: #999;
                        font-size: .293333rem;
                        line-height: 1;
                    }

                    #join .lists .list .item .t span {
                        font-size: .293333rem;
                        color: #d2d2d2;
                        line-height: 1;
                    }

                #join .lists .list .item .info {
                    width: 100%;
                    height: 1.066667rem;
                    padding: 0 .4rem;
                }

                    #join .lists .list .item .info .left .city {
                        font-size: .293333rem;
                        color: #999;
                        padding-left: .373333rem;
                        position: relative;
                    }

                        #join .lists .list .item .info .left .city::before {
                            content: '';
                            width: .333333rem;
                            height: .333333rem;
                            background: url("/images/ico_3.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            position: absolute;
                            top: 50%;
                            left: 0;
                            -webkit-transform: translateY(-50%);
                            transform: translateY(-50%);
                        }

                    #join .lists .list .item .info .left .date {
                        font-size: .293333rem;
                        color: #999;
                        padding-left: .373333rem;
                        position: relative;
                        margin-left: .293333rem;
                    }

                        #join .lists .list .item .info .left .date::before {
                            content: '';
                            width: .333333rem;
                            height: .333333rem;
                            background: url("/images/ico_1.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            position: absolute;
                            top: 50%;
                            left: 0;
                            -webkit-transform: translateY(-50%);
                            transform: translateY(-50%);
                        }

                    #join .lists .list .item .info .num {
                        font-size: .293333rem;
                        color: #999;
                        padding-left: .373333rem;
                        position: relative;
                    }

                        #join .lists .list .item .info .num::before {
                            content: '';
                            width: .333333rem;
                            height: .333333rem;
                            background: url("/images/ico_2.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            position: absolute;
                            top: 50%;
                            left: 0;
                            -webkit-transform: translateY(-50%);
                            transform: translateY(-50%);
                        }

#joinDetail {
    width: 10rem;
    padding: .666667rem .4rem 0;
}

    #joinDetail .title {
        font-size: .586667rem;
        color: #121212;
        font-weight: 500;
    }

    #joinDetail .info {
        width: 100%;
        margin-top: .666667rem;
    }

        #joinDetail .info .city {
            font-size: .293333rem;
            color: #999;
            padding-left: .373333rem;
            position: relative;
        }

            #joinDetail .info .city::before {
                content: '';
                width: .333333rem;
                height: .333333rem;
                background: url("/images/ico_3.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        #joinDetail .info .date {
            font-size: .293333rem;
            color: #999;
            padding-left: .373333rem;
            position: relative;
            margin-left: .293333rem;
        }

            #joinDetail .info .date::before {
                content: '';
                width: .333333rem;
                height: .333333rem;
                background: url("/images/ico_1.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        #joinDetail .info .num {
            font-size: .293333rem;
            color: #999;
            padding-left: .373333rem;
            position: relative;
            margin-left: .293333rem;
        }

            #joinDetail .info .num::before {
                content: '';
                width: .333333rem;
                height: .333333rem;
                background: url("/images/ren.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

    #joinDetail .yq {
        width: 100%;
        height: 1.066667rem;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eee;
        margin-top: .533333rem;
    }

        #joinDetail .yq h4 {
            font-size: .346667rem;
            color: #444;
            line-height: 1;
            font-weight: normal;
        }

        #joinDetail .yq .right .xl {
            font-size: .293333rem;
            color: #999;
            padding-left: .373333rem;
            position: relative;
            margin-left: .293333rem;
        }

            #joinDetail .yq .right .xl::before {
                content: '';
                width: .333333rem;
                height: .333333rem;
                background: url("/images/xueli.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        #joinDetail .yq .right .year {
            font-size: .293333rem;
            color: #999;
            padding-left: .373333rem;
            position: relative;
            margin-left: .293333rem;
        }

            #joinDetail .yq .right .year::before {
                content: '';
                width: .333333rem;
                height: .333333rem;
                background: url("/images/jingy.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        #joinDetail .yq .right .form {
            font-size: .293333rem;
            color: #999;
            position: relative;
            margin-left: .293333rem;
        }

    #joinDetail .richtext {
        width: 100%;
        padding: .48rem 0 0;
    }

        #joinDetail .richtext .title {
            font-size: .346667rem;
            color: #444;
            line-height: 1;
            font-weight: normal;
        }

        #joinDetail .richtext .rich {
            width: 100%;
            padding-top: .533333rem;
        }

    #joinDetail .recommend {
        width: 9.2rem;
        height: 1.173333rem;
        background: #0b5baa;
        text-align: center;
        line-height: 1.173333rem;
        color: #fff;
        border-radius: .186667rem;
        outline: none;
        border: none;
        position: fixed;
        bottom: .533333rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: .4rem;
    }

#inquire {
    width: 10rem;
}

    #inquire .head {
        width: 10rem;
        height: 4.26667rem;
        background-color: #9398a2;
        padding: 0.66667rem 0.50667rem 0;
    }

        #inquire .head h2 {
            width: 100%;
            font-size: 0.50667rem;
            line-height: 1;
            color: #fff;
            margin-top: 0.4rem;
            font-weight: normal;
            text-align: center;
        }

        #inquire .head .float {
            width: 100%;
            margin-top: 0.58667rem;
        }

            #inquire .head .float .search {
                width: 100%;
                height: 0.8rem;
                background: #fff;
                color: #333;
                position: relative;
                padding-left: 0.26667rem;
            }

                #inquire .head .float .search i {
                    display: block;
                    width: 0.4rem;
                    height: 0.4rem;
                    background-image: url("/Content/images/search.png");
                    background-size: 100% 100%;
                    background-position: center center;
                }

                #inquire .head .float .search input {
                    width: 92%;
                    color: #333;
                    padding-left: 0.26667rem;
                }

    #inquire .select {
        width: 100%;
        padding: .4rem;
    }
        #inquire .select .city_input::before {
            content: '';
            background: url("/Content/images/search_city.png") no-repeat;
            background-size: 100% 100%;
            background-position: center center;
            width: 0.4rem;
            height: 0.4rem;
            position: absolute;
            right: 0.2rem;
            top: 0.2rem;
        }

        #inquire .select .city_input {
            width: 48%;
            height: 0.8rem;
            background: #fff;
            position: relative;
            padding-left: 0.13333rem;
        }

            #inquire .select .city_input input {
                width: 3.5rem;
                height: 100%;
                color: #9398a2;
            }

        #inquire .select .city {
            width: 48%;
            height: 0.8rem;
            background: #fff;
            position: relative;
            padding-left: 0.13333rem;
        }

            #inquire .select .city input {
                width: 2.66667rem;
                height: 100%;
                color: #9398a2;
            }

            #inquire .select .city select {
                position: absolute;
                display: block;
                width: 100%;
                color: #9398a2;
                height: 100%;
                opacity: 0;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            #inquire .select .city .select-box .select-text {
                width: 100%;
                height: 100%;
                line-height: 0.8rem;
                color: #9398a2;
            }

            #inquire .select .city .select-box {
                display: block;
                width: 100%;
                color: #9398a2;
                height: 100%;
                position: relative;
            }

            #inquire .select .city::before {
                content: '';
                width: 0;
                height: 0;
                border-left: 0.16rem solid transparent;
                border-right: 0.16rem solid transparent;
                border-top: 0.16rem solid #999;
                position: absolute;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0.13333rem;
            }

    #inquire .lists {
        width: 100%;
        padding-top: 0.26667rem;
    }

        #inquire .lists .list {
            width: 100%;
            padding: 0 0.4rem;
        }

            #inquire .lists .list .item {
                width: 100%;
                background: #fff;
                padding: 0.21333rem 0.26667rem 0.37333rem;
                margin-bottom: 0.26667rem;
            }

                #inquire .lists .list .item .item-head {
                    display: block;
                    width: 100%;
                    position: relative;
                    padding-right: 0.4rem;
                }

                    #inquire .lists .list .item .item-head .title {
                        font-size: 0.45333rem;
                        color: #333;
                        line-height: 1.1;
                    }

                    #inquire .lists .list .item .item-head .path {
                        font-size: 0.34667rem;
                        color: #999;
                        line-height: 1.2;
                        margin-top: 0.15667rem;
                    }

                    #inquire .lists .list .item .item-head::before {
                        content: '';
                        width: 0.4rem;
                        height: 0.4rem;
                        background: url("/Content/images/right_list.png") no-repeat;
                        background-position: center center;
                        background-size: 100% 100%;
                        position: absolute;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        transform: translateY(-50%);
                        right: 0;
                    }

                #inquire .lists .list .item .fn {
                    width: 100%;
                    padding: 0 0.53333rem;
                    margin-top: 0.4rem;
                }

                    #inquire .lists .list .item .fn a {
                        width: 3.06667rem;
                        height: 0.64rem;
                        border: none;
                        padding: 0 0.13333rem;
                        font-size: 0.32rem;
                        color: #fff;
                        line-height: 1;
                        background: #0b5baa;
                        font-weight: normal;
                        font-style: normal;
                        padding-left: 0.45333rem;
                    }

                        #inquire .lists .list .item .fn a i {
                            display: block;
                            width: 0.45333rem;
                            height: 0.45333rem;
                            background: url("/Content/images/phone.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: 0.08rem;
                        }

                    #inquire .lists .list .item .fn .gps {
                        width: 3.06667rem;
                        height: 0.64rem;
                        border: none;
                        padding: 0 0.13333rem;
                        font-size: 0.32rem;
                        color: #0b5baa;
                        line-height: 1;
                        border: 1px solid #0b5baa;
                        padding-left: 0.45333rem;
                    }

                        #inquire .lists .list .item .fn .gps i {
                            display: block;
                            width: 0.42667rem;
                            height: 0.42667rem;
                            background: url("/Content/images/path.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: 0.08rem;
                        }

#inquire-detail {
    width: 10rem;
    padding: 2.66667rem 0.50667rem 0;
}

    #inquire-detail .head {
        width: 10rem;
        height: 4.26667rem;
        background-color: #999;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    #inquire-detail .content {
        width: 100%;
    }

        #inquire-detail .content .detail {
            width: 100%;
            position: relative;
            background: #fff;
            padding-top: 1.66667rem;
            padding-bottom: .733333rem;
        }

            #inquire-detail .content .detail img {
                display: block;
                width: 1.86667rem;
                height: 1.86667rem;
                background: #9398a2;
                border-radius: 50%;
                border: 1px solid #0b5baa;
                position: absolute;
                top: -0.93333rem;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            #inquire-detail .content .detail h4 {
                width: 100%;
                text-align: center;
                line-height: 1;
                font-size: 0.42667rem;
                color: #333;
                padding: 0 0.26667rem;
            }

            #inquire-detail .content .detail p {
                width: 100%;
                text-align: center;
                line-height: 1;
                font-size: 0.32rem;
                color: #9398a2;
                padding: 0 0.26667rem;
                margin-top: .186667rem;
            }

        #inquire-detail .content .c {
            width: 100%;
            padding: 0.26667rem 0.24rem;
            background: #fff;
            margin-top: 0.26667rem;
            font-size: 0.32rem;
            color: #333;
            line-height: 0.45333rem;
            cursor: pointer;
        }

            #inquire-detail .content .c p {
                display: block;
                width: 5.6rem;
                font-size: 0.32rem;
                color: #333;
                line-height: 0.45333rem;
                cursor: pointer;
            }

            #inquire-detail .content .c .iconcenter {
                width: 0.66667rem;
                height: 0.66667rem;
                border-radius: 50%;
                background: #0b5baa;
            }

                #inquire-detail .content .c .iconcenter i {
                    display: block;
                    width: 0.42667rem;
                    height: 0.42667rem;
                    background: url("/Content/images/phone.png") no-repeat;
                    background-size: 100% 100%;
                    background-position: center center;
                    cursor: pointer;
                }

            #inquire-detail .content .c .path {
                width: 100%;
            }

            #inquire-detail .content .c .path_detail {
                width: 6.13333rem;
                font-size: 0.32rem;
                color: #333;
                line-height: 0.45333rem;
            }

            #inquire-detail .content .c .gps {
                width: 3.06667rem;
                height: 0.64rem;
                border: none;
                padding: 0 0.13333rem;
                font-size: 0.32rem;
                color: #0b5baa;
                line-height: 1;
                border: 1px solid #0b5baa;
                padding-left: 0.45333rem;
            }

                #inquire-detail .content .c .gps i {
                    display: block;
                    width: 0.42667rem;
                    height: 0.42667rem;
                    background: url("/Content/images/path.png") no-repeat;
                    background-size: 100% 100%;
                    background-position: center center;
                    margin-right: 0.08rem;
                }

        #inquire-detail .content .no-c {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        #inquire-detail .content .name {
            width: 2.16rem;
            padding-left: 0.18667rem;
            font-size: 0.37333rem;
            color: #999;
            line-height: 0.45333rem;
        }

        #inquire-detail .content .gps-padding {
            width: 100%;
            padding-left: 2.16rem;
            margin-top: 0.13333rem;
        }

#product {
    width: 10rem;
    padding: .4rem;
}

    #product .tab {
        width: 100%;
        height: 1.2rem;
        background: #fff;
        border-radius: .186667rem;
        overflow: hidden;
    }

        #product .tab .tab-item {
            width: 33.33%;
            height: 100%;
            text-align: center;
            line-height: 1.2rem;
            color: #0b5baa;
            font-size: .32rem;
        }

        #product .tab .active {
            background: #0b5baa;
            color: #fff;
        }

    #product .content {
        width: 100%;
        margin-top: .533333rem;
    }

        #product .content .item1 {
            width: 6.066667rem;
            height: 2.933333rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
            -ms-flex-align: end;
            align-items: flex-end;
            padding: .266667rem;
            background: #ccc;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            margin-right: .2rem;
        }

            #product .content .item1 .float {
                width: 100%;
                font-size: .346667rem;
                color: #FFF;
                line-height: 1;
            }

                #product .content .item1 .float i {
                    display: block;
                    width: .426667rem;
                    height: .426667rem;
                    background: url("/Content/images/right_list.png") no-repeat;
                    background-size: 100% 100%;
                    background-position: center center;
                }

        #product .content .item {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 2.933333rem;
            margin-right: .2rem;
            margin-bottom: .2rem;
            height: 2.933333rem;
            background: #fff;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            padding: .266667rem;
            overflow: hidden;
        }

            #product .content .item img {
                display: block;
                width: 100%;
                max-height: 2rem;
            }

            #product .content .item p {
                width: 100%;
                /* height: .933333rem; */
                text-align: center;
                font-size: .346667rem;
                color: #2856ce;
                /* line-height: .933333rem; */
            }

            #product .content .item:nth-of-type(3n-1) {
                margin-right: 0;
            }

#product-detail {
    width: 10rem;
}

    #product-detail .header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: 100%;
        background-color: #fff;
        height: 5.333333rem;
    }

        #product-detail .header p {
            width: 100%;
            height: 1.04rem;
            line-height: 1.04rem;
            font-size: .373333rem;
            color: #fff;
            padding-left: .24rem;
            background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#555));
            background: -webkit-linear-gradient(top, #fff, #555);
            background: linear-gradient(to bottom, #fff, #555);
        }

    #product-detail .richtext {
        width: 100%;
        padding: 0 .4rem;
    }

    #product-detail .controller {
        width: 9.2rem;
        height: 1.066667rem;
        background: #2856ce;
        position: fixed;
        bottom: .533333rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        overflow: hidden;
        border-radius: .186667rem;
    }

        #product-detail .controller .item {
            width: 33.33%;
        }

            #product-detail .controller .item:nth-of-type(1) {
                position: relative;
            }

                /* #product-detail .controller .item:nth-of-type(1)::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
} */

                #product-detail .controller .item:nth-of-type(1)::after {
                    content: '';
                    width: 1px;
                    height: 100%;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
                    background: #fff;
                }

            #product-detail .controller .item .ico1 {
                display: block;
                width: .426667rem;
                height: .426667rem;
                background: url("/images/pdf.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: .133333rem;
            }

            #product-detail .controller .item .ico2 {
                display: block;
                width: .426667rem;
                height: .426667rem;
                background: url("/images/shop-car.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: .133333rem;
            }

            #product-detail .controller .item .ico3 {
                display: block;
                width: .426667rem;
                height: .426667rem;
                background: url("/images/share.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: .133333rem;
            }

            #product-detail .controller .item span {
                font-size: .32rem;
                color: #fff;
                line-height: 1;
            }

#tool {
    width: 10rem;
}

    #tool .t {
        width: 100%;
    }

    #tool .title {
        width: 100%;
        font-size: .453333rem;
        color: #0b5baa;
        line-height: .666667rem;
        padding: 0 .4rem;
    }

    #tool .list {
        width: 100%;
        padding: 0 .4rem;
        margin-top: .666667rem;
    }

        #tool .list .item {
            width: 100%;
            height: 2.4rem;
            background: #f1f6fc;
            margin-bottom: .293333rem;
        }

            #tool .list .item img {
                display: block;
                width: 50%;
                height: 100%;
                background: #ccc;
            }

            #tool .list .item .info {
                width: 50%;
                height: 1.093333rem;
                padding-left: .48rem;
            }

                #tool .list .item .info .ico {
                    display: block;
                    width: 1.093333rem;
                    height: 1.093333rem;
                    background-position: center center;
                    background-repeat: no-repeat;
                    border-radius: 50%;
                    border: 1px solid #0b5baa;
                }

                #tool .list .item .info .txt {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -webkit-flex-direction: column;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-pack: justify;
                    -webkit-justify-content: space-between;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    margin-right: .266667rem;
                    padding-top: .16rem;
                    padding-top: .066667rem;
                    margin-left: .266667rem;
                }

                    #tool .list .item .info .txt h4 {
                        font-size: .4rem;
                        color: #0b5baa;
                        line-height: 1;
                    }

                    #tool .list .item .info .txt p {
                        font-size: .24rem;
                        color: #0b5baa;
                        line-height: 1;
                    }

#tool-detail {
    width: 10rem;
}

    #tool-detail .header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: 100%;
        background-color: #fff;
        height: 5.333333rem;
    }

        #tool-detail .header p {
            width: 100%;
            height: 1.04rem;
            line-height: 1.04rem;
            font-size: .373333rem;
            color: #fff;
            padding-left: .24rem;
            background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#555));
            background: -webkit-linear-gradient(top, #fff, #555);
            background: linear-gradient(to bottom, #fff, #555);
        }

    #tool-detail .list {
        width: 100%;
        padding: 0 .4rem;
        margin-top: .506667rem;
    }

        #tool-detail .list .box {
            width: 100%;
            height: 1.066667rem;
            background: #fff;
        }

            #tool-detail .list .box h4 {
                width: 2.133333rem;
                font-size: .293333rem;
                color: #999;
                line-height: 1;
                padding-left: .266667rem;
            }

            #tool-detail .list .box p {
                font-size: .293333rem;
                color: #444;
                line-height: 1;
            }

    #tool-detail .controller {
        width: 9.2rem;
        height: 1.066667rem;
        background: #2856ce;
        position: fixed;
        bottom: .533333rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        overflow: hidden;
        border-radius: .186667rem;
    }

        #tool-detail .controller .item {
            width: 50%;
        }

            #tool-detail .controller .item:nth-of-type(2) {
                position: relative;
            }

                #tool-detail .controller .item:nth-of-type(2)::before {
                    content: '';
                    width: 1px;
                    height: 100%;
                    position: absolute;
                    top: 50%;
                    left: 0;
                    -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
                    background: #fff;
                }

            #tool-detail .controller .item .ico1 {
                display: block;
                width: .426667rem;
                height: .426667rem;
                background: url("/images/download.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: .133333rem;
            }

            #tool-detail .controller .item .ico2 {
                display: block;
                width: .426667rem;
                height: .426667rem;
                background: url("/images/sc.png") no-repeat;
                background-size: 100% 100%;
                background-position: center center;
                margin-right: .133333rem;
            }

            #tool-detail .controller .item span {
                font-size: .32rem;
                color: #fff;
                line-height: 1;
            }

#tool-video {
    width: 10rem;
    padding: .4rem;
}

    #tool-video .head {
        width: 100%;
        margin-bottom: .266667rem;
    }

        #tool-video .head .search {
            width: 100%;
            height: 0.8rem;
            background: #fff;
            color: #333;
            position: relative;
            padding-left: 0.26667rem;
        }

            #tool-video .head .search i {
                display: block;
                width: 0.4rem;
                height: 0.4rem;
                background-image: url("/Content/images/search.png");
                background-size: 100% 100%;
                background-position: center center;
            }

            #tool-video .head .search input {
                width: 4.4rem;
                color: #333;
                padding-left: 0.26667rem;
            }

    #tool-video .lists {
        width: 100%;
    }

        #tool-video .lists .list {
            width: 100%;
        }

            #tool-video .lists .list .item {
                width: 100%;
                height: 3.146667rem;
                background: #fff;
                margin-bottom: .266667rem;
            }

                #tool-video .lists .list .item img {
                    display: block;
                    width: 4.133333rem;
                    height: 3.146667rem;
                    background: #ccc;
                }

                #tool-video .lists .list .item .info {
                    display: block;
                    width: 5.066667rem;
                    height: 100%;
                    padding: .266667rem;
                }

                    #tool-video .lists .list .item .info .title {
                        font-size: .4rem;
                        line-height: .48rem;
                        height: .96rem;
                        width: 100%;
                        color: #333;
                        font-weight: normal;
                    }

                    #tool-video .lists .list .item .info .tag {
                        width: 100%;
                        font-size: .266667rem;
                        color: #999;
                        margin-top: .133333rem;
                    }

                    #tool-video .lists .list .item .info .controller {
                        width: 100%;
                        margin-top: .266667rem;
                    }

                        #tool-video .lists .list .item .info .controller .iconcenter {
                            width: 2.4rem;
                            height: .666667rem;
                            border: 1px solid #0b5baa;
                            font-size: .266667rem;
                            color: #0b5baa;
                        }

                            #tool-video .lists .list .item .info .controller .iconcenter i {
                                display: block;
                                width: .426667rem;
                                height: .426667rem;
                                background-image: url("/images/download1.png");
                                margin-right: .133333rem;
                                font-size: .266667rem;
                                color: #0b5baa;
                            }

                        #tool-video .lists .list .item .info .controller .collection {
                            font-size: .266667rem;
                            color: #999;
                            line-height: 1;
                            cursor: pointer;
                        }

                            #tool-video .lists .list .item .info .controller .collection i {
                                display: block;
                                width: .426667rem;
                                height: .426667rem;
                                background-image: url("/images/sc1.png");
                                margin-right: .026667rem;
                            }

                        #tool-video .lists .list .item .info .controller .active {
                            color: #0b5baa;
                        }

                            #tool-video .lists .list .item .info .controller .active i {
                                background-image: url("/images/sc2.png");
                            }

#tool-propaganda {
    width: 10rem;
    padding: .4rem;
}

    #tool-propaganda .head {
        width: 100%;
    }

        #tool-propaganda .head .search {
            width: 100%;
            height: 0.8rem;
            background: #fff;
            color: #333;
            position: relative;
            padding-left: 0.26667rem;
        }

            #tool-propaganda .head .search i {
                display: block;
                width: 0.4rem;
                height: 0.4rem;
                background-image: url("/Content/images/search.png");
                background-size: 100% 100%;
                background-position: center center;
            }

            #tool-propaganda .head .search input {
                width: 4.4rem;
                color: #333;
                padding-left: 0.26667rem;
            }

    #tool-propaganda .select {
        width: 100%;
        padding: .4rem 0;
    }

        #tool-propaganda .select .city {
            width: 48%;
            height: 0.8rem;
            background: #fff;
            position: relative;
            padding-left: 0.13333rem;
        }

            #tool-propaganda .select .city input {
                width: 2.66667rem;
                height: 100%;
                color: #9398a2;
            }

            #tool-propaganda .select .city select {
                display: block;
                width: 2.666667rem;
                color: #9398a2;
                height: 100%;
            }

            #tool-propaganda .select .city::before {
                content: '';
                width: 0;
                height: 0;
                border-left: 0.16rem solid transparent;
                border-right: 0.16rem solid transparent;
                border-top: 0.16rem solid #999;
                position: absolute;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0.13333rem;
            }

    #tool-propaganda .lists {
        width: 100%;
    }

        #tool-propaganda .lists .list {
            width: 100%;
        }

            #tool-propaganda .lists .list > .item {
                display: block;
                width: 100%;
                background: #fff;
                margin-bottom: .266667rem;
            }

                #tool-propaganda .lists .list > .item .head {
                    width: 100%;
                    height: 2.906667rem;
                    padding: .373333rem .4rem;
                }

                    #tool-propaganda .lists .list > .item .head img {
                        display: block;
                        width: 40%;
                        max-height: 100%;
                        background: #fff;
                    }

                    #tool-propaganda .lists .list > .item .head .info {
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -webkit-flex-direction: column;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        -webkit-box-pack: justify;
                        -webkit-justify-content: space-between;
                        -ms-flex-pack: justify;
                        justify-content: space-between;
                        width: 60%;
                        height: 100%;
                        padding: 0 0 .106667rem .293333rem;
                    }

                        #tool-propaganda .lists .list > .item .head .info .title {
                            width: 100%;
                            font-size: .4rem;
                            line-height: .56rem;
                            color: #333;
                        }

                        #tool-propaganda .lists .list > .item .head .info p {
                            font-size: .346667rem;
                            color: #999;
                            line-height: 1;
                        }

                #tool-propaganda .lists .list > .item .controller {
                    width: 100%;
                    height: 1.066667rem;
                    border: 1px solid #f4f4f4;
                }

                    #tool-propaganda .lists .list > .item .controller > .item {
                        width: 50%;
                        height: 100%;
                    }

                        #tool-propaganda .lists .list > .item .controller > .item:nth-of-type(2) {
                            position: relative;
                        }

                            #tool-propaganda .lists .list > .item .controller > .item:nth-of-type(2)::before {
                                content: '';
                                width: 1px;
                                height: 100%;
                                position: absolute;
                                top: 50%;
                                left: 0;
                                -webkit-transform: translateY(-50%);
                                transform: translateY(-50%);
                                background: #f4f4f4;
                            }

                        #tool-propaganda .lists .list > .item .controller > .item .ico1 {
                            display: block;
                            width: .426667rem;
                            height: .426667rem;
                            background: url("/images/download1.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: .133333rem;
                        }

                        #tool-propaganda .lists .list > .item .controller > .item .ico2 {
                            display: block;
                            width: .426667rem;
                            height: .426667rem;
                            background: url("/images/sc1.png") no-repeat;
                            background-size: 100% 100%;
                            background-position: center center;
                            margin-right: .133333rem;
                        }

                        #tool-propaganda .lists .list > .item .controller > .item span {
                            font-size: .32rem;
                            color: #0b5baa;
                            line-height: 1;
                        }

                        #tool-propaganda .lists .list > .item .controller > .item .sc {
                            color: #999;
                        }

                    #tool-propaganda .lists .list > .item .controller > .active .ico2 {
                        background: url("/images/sc2.png") no-repeat;
                        background-size: 100% 100%;
                        background-position: center center;
                    }

                    #tool-propaganda .lists .list > .item .controller > .active .sc {
                        color: #0b5baa;
                    }

#tool-app {
    width: 10rem;
    padding: .266667rem;
    padding-top: 2.32rem;
}

    #tool-app .head-bg {
        display: block;
        width: 100%;
        min-height: 2.666667rem;
        background: #ccc;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
    }

    #tool-app .head {
        width: 100%;
        position: relative;
        padding-top: 1.946667rem;
        padding-bottom: .773333rem;
        background: #fff;
    }

        #tool-app .head .logo {
            display: block;
            width: 2.48rem;
            height: 2.48rem;
            border: .026667rem solid #0b5baa;
            border-radius: 50%;
            position: absolute;
            top: -1.24rem;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            background: #fff;
        }

        #tool-app .head .detail-logo {
            display: block;
            width: 2.48rem;
            height: 2.48rem;
            border: .026667rem solid #0b5baa;
            border-radius: .186667rem;
            position: absolute;
            top: -1.24rem;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            background: #fff;
        }

        #tool-app .head .title {
            width: 100%;
            text-align: center;
            font-size: .506667rem;
            color: #333;
            font-weight: 500;
            padding: 0 .266667rem;
        }

        #tool-app .head .detail {
            width: 100%;
            padding: 0 .266667rem;
            margin-top: .4rem;
            color: #999;
            font-size: .346667rem;
            text-align: center;
        }

    #tool-app .search {
        width: 100%;
        height: 0.8rem;
        background: #fff;
        color: #333;
        position: relative;
        padding-left: 0.26667rem;
        margin-top: .4rem;
    }

        #tool-app .search i {
            display: block;
            width: 0.4rem;
            height: 0.4rem;
            background-image: url("/Content/images/search.png");
            background-size: 100% 100%;
            background-position: center center;
        }

        #tool-app .search input {
            width: 4.4rem;
            color: #333;
            padding-left: 0.26667rem;
        }

    #tool-app .lists {
        width: 100%;
        background: #fff;
        margin-top: .4rem;
    }

        #tool-app .lists .item {
            width: 100%;
            height: 3.2rem;
            padding: .533333rem .32rem;
            border-bottom: 1px solid #f0f0f0;
        }

            #tool-app .lists .item a {
                display: block;
            }

            #tool-app .lists .item img {
                display: block;
                width: 1.92rem;
                height: 1.92rem;
                background: #ccc;
                border-radius: .186667rem;
            }

            #tool-app .lists .item .info {
                width: 4.266667rem;
                height: 2.106667rem;
                margin-left: .346667rem;
            }

                #tool-app .lists .item .info .title {
                    font-size: .4rem;
                    line-height: .533333rem;
                    height: .986667rem;
                    text-align: left;
                    color: #333;
                    font-weight: 500;
                }

                #tool-app .lists .item .info .detail {
                    font-size: .373333rem;
                    line-height: .453333rem;
                    height: .88rem;
                    text-align: left;
                    color: #999;
                    margin-top: .08rem;
                }

            #tool-app .lists .item .get {
                display: block;
                width: 1.786667rem;
                height: .826667rem;
                border: 1px solid #0b5baa;
                text-align: center;
                line-height: .826667rem;
                font-size: .373333rem;
                color: #0b5baa;
                margin-left: .32rem;
            }

    #tool-app .qrcode {
        width: 100%;
        background: #fff;
        margin-top: .4rem;
        padding-top: .986667rem;
        padding-bottom: .986667rem;
    }

        #tool-app .qrcode img {
            display: block;
            margin: 0 auto;
            width: 3.466667rem;
            height: 3.466667rem;
            background: #ccc;
        }

        #tool-app .qrcode p {
            width: 100%;
            text-align: center;
            line-height: 1;
            font-size: .346667rem;
            color: #999;
            margin-top: .64rem;
        }

#index {
    width: 10rem;
}

    #index .head {
        width: 100%;
        border-top: .133333rem solid #0b5baa;
        padding-top: .533333rem;
        padding-left: .64rem;
    }

        #index .head .logo {
            display: block;
            width: 4rem;
        }

        #index .head p {
            width: 7.2rem;
            font-size: .373333rem;
            color: #0b5baa;
            font-weight: 500;
            line-height: .64rem;
            margin-top: .346667rem;
        }

    #index .item-list {
        width: 100%;
        position: relative;
    }

        #index .item-list .ico_1 {
            display: block;
            width: 2.64rem;
            height: 2.64rem;
            border-radius: 50%;
            overflow: hidden;
            background-image: url("/images/index_logo_1.png");
            position: fixed;
            bottom: 7.33333rem;
            left: 7.093333rem;
        }

        #index .item-list .ico_2 {
            display: block;
            width: 2.64rem;
            height: 2.64rem;
            border-radius: 50%;
            overflow: hidden;
            background-image: url("/images/index_logo_2.png");
            position: fixed;
            bottom: 6.133333rem;
            left: 3.63333rem;
        }

        #index .item-list .ico_3 {
            display: block;
            width: 2.64rem;
            height: 2.64rem;
            border-radius: 50%;
            overflow: hidden;
            background-image: url("/images/index_logo_3.png");
            position: fixed;
            bottom: 3.5rem;
            left: 1.8rem;
        }

        #index .item-list .ico_4 {
            display: block;
            width: 2.64rem;
            height: 2.64rem;
            border-radius: 50%;
            overflow: hidden;
            background-image: url("/images/index_logo_4.png");
            position: fixed;
            bottom: .7rem;
            left: 1.4rem;
        }

#index-detail {
    width: 10rem;
}

    #index-detail .richtext {
        width: 100%;
    }

    #index-detail .tab-bar {
        display: block;
        height: 100%;
        position: fixed;
        top: 0;
        right: -5.333333rem;
        bottom: 0;
        background: #fff;
        padding: 0 .186667rem;
        -webkit-transition: .6s linear;
        transition: .6s linear;
        padding-top: .533333rem;
        z-index: 2;
    }

        #index-detail .tab-bar .close {
            display: block;
            width: .64rem;
            height: .64rem;
            background-image: url("/images/close1.png");
            margin: 0 auto .72rem;
        }

        #index-detail .tab-bar .item {
            display: block;
            width: 100%;
            margin: 0 auto .64rem;
        }

            #index-detail .tab-bar .item img {
                display: block;
                width: .96rem;
                height: .96rem;
                margin: 0 auto .186667rem;
            }

            #index-detail .tab-bar .item span {
                display: block;
                width: 100%;
                text-align: center;
                font-size: .266667rem;
                color: #333;
            }

    #index-detail .has-seles {
        right: 0;
    }

    #index-detail .choose-tab {
        display: block;
        width: .96rem;
        height: .96rem;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-image: url("/images/burger.png");
        background-size: .64rem .64rem;
        background-position: center center;
        background-color: #0b5baa;
        position: fixed;
        top: .453333rem;
        right: .453333rem;
    }

.model > p {
    width: 100%;
    text-align: center;
    font-size: .373333rem;
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.model-share p {
    width: auto;
    text-align: center;
    font-size: .373333rem;
    color: #fff;
    position: fixed;
    top: 1.6rem;
    right: 1.4rem;
    left: initial;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.model-share img {
    display: block;
    width: .76rem;
    height: 1.133333rem;
    position: fixed;
    right: .533333rem;
    top: .4rem;
}

.model {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 9;
}

    .model .updata {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: .426667rem .8rem;
        background: #fff;
    }

        .model .updata .head {
            width: 100%;
            margin-bottom: .666667rem;
        }

            .model .updata .head .email {
                width: 2.453333rem;
                height: .853333rem;
                border: none;
                background: #0b5baa;
                text-align: center;
                line-height: .853333rem;
                color: #fff;
                font-size: .346667rem;
                line-height: .853333rem;
            }

            .model .updata .head i {
                display: block;
                width: .44rem;
                height: .426667rem;
                background-image: url("/images/down.png");
            }

        .model .updata .info {
            width: 100%;
            margin-bottom: .173333rem;
        }

            .model .updata .info img {
                display: block;
                width: .933333rem;
                height: .933333rem;
            }

            .model .updata .info .detail {
                width: 5.2rem;
                padding-left: .373333rem;
            }

                .model .updata .info .detail .title {
                    font-size: .346667rem;
                    color: #333;
                }

                .model .updata .info .detail p {
                    font-size: .293333rem;
                    color: #999;
                    line-height: 1;
                    margin-top: .16rem;
                }

            .model .updata .info .link {
                display: block;
                width: 1.813333rem;
                height: .746667rem;
                border: 1px solid #0b5baa;
                color: #0b5baa;
                font-size: .32rem;
                line-height: .746667rem;
                text-align: center;
                margin-left: .213333rem;
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
            }

            .model .updata .info a {
                display: block;
                width: 1.813333rem;
                height: .746667rem;
                border: 1px solid #0b5baa;
                color: #0b5baa;
                font-size: .32rem;
                line-height: .746667rem;
                text-align: center;
                margin-left: .213333rem;
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
            }

.model-email {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 10;
}

    .model-email .email-section {
        display: block;
        width: 8.533333rem;
        background: #fff;
        padding: .48rem .666667rem .56rem;
        position: absolute;
        top: 30%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .model-email .email-section img {
            display: block;
            width: 1.333333rem;
            height: 1.333333rem;
            margin: 0 auto 0;
        }

        .model-email .email-section h4 {
            font-size: .346667rem;
            color: #333;
            text-align: center;
            line-height: 1;
            margin-top: .533333rem;
        }

        .model-email .email-section p {
            font-size: .293333rem;
            color: #999;
            line-height: 1;
            text-align: center;
            margin-top: .533333rem;
        }

        .model-email .email-section .close {
            width: 100%;
        }

        .model-email .email-section i {
            display: block;
            width: .426667rem;
            height: .426667rem;
            background-image: url("/images/close.png");
        }

        .model-email .email-section .input {
            width: 100%;
            height: .8rem;
            border-radius: .186667rem;
            overflow: hidden;
            position: relative;
            margin-top: .6rem;
        }

            .model-email .email-section .input .model-email-input {
                display: block;
                width: 100%;
                height: 100%;
                background: #f6f6f6;
                color: #333;
                padding-left: .266667rem;
                font-size: .32rem;
                outline: inherit;
                margin-top: 1px
            }

            .model-email .email-section .input .model-email-submit {
                width: 1.786667rem;
                height: 100%;
                background: #0b5baa;
                outline: none;
                border: none;
                color: #fff;
                font-size: .32rem;
                text-align: center;
                line-height: .8rem;
                position: absolute;
                top: 0;
                right: 0;
            }

.weui-toast {
    font-size: 14px;
}

.w {
    margin: 0 auto;
}

input[type="checkbox"] {
    display: block;
}

.weui-switch {
    width: 1.306667rem;
    height: .72rem;
}

    .weui-switch::before {
        width: 1.306667rem;
        height: .693333rem;
    }

    .weui-switch::after {
        width: .693333rem;
        height: .693333rem;
    }

    .weui-switch:checked::after {
        -webkit-transform: translateX(26px);
        transform: translateX(26px);
    }

.weui-btn {
    border-radius: .64rem;
}

.tr {
    text-align: right !important;
}

.weui-picker-modal {
    height: 9rem;
}

    .weui-picker-modal .toolbar {
        line-height: 1.2rem;
        font-size: 0.4rem;
    }

        .weui-picker-modal .toolbar .toolbar-inner {
            height: 1.2rem;
        }

        .weui-picker-modal .toolbar .picker-button {
            height: 1.2rem;
            line-height: 1.2rem;
        }

        .weui-picker-modal .toolbar .title {
            line-height: 1.2rem;
            font-size: 0.4rem;
        }

    .weui-picker-modal .picker-items {
        font-size: .4rem;
    }

    .weui-picker-modal .picker-modal-inner {
        height: 8rem;
    }

    .weui-picker-modal .picker-center-highlight {
        display: none;
    }

body.modal-open {
    position: fixed;
    width: 100%;
    height: 100%;
}

.dropload-down {
    display: none;
}

.select-model {
    display: none;
    width: 10rem;
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

    .select-model .select-content {
        width: 8rem;
        max-height: 5.866667rem;
        min-height: 3.733333rem;
        overflow-y: scroll;
        background: #fff;
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        padding: .186667rem;
    }

        .select-model .select-content .title {
            width: 100%;
            font-size: .32rem;
            color: #999;
            line-height: 1;
            margin-bottom: .213333rem;
        }

        .select-model .select-content .select-list {
            width: 100%;
        }

            .select-model .select-content .select-list .item {
                padding: 0 .106667rem;
                height: .453333rem;
                font-size: .293333rem;
                line-height: .426667rem;
                border: 1px solid #0b5baa;
                color: #0b5baa;
                margin-bottom: .133333rem;
                margin-right: .133333rem;
            }


/* 新增列表 */
#product {
    width: 10rem;
    padding: .4rem .266667rem;
    /* background-image: radial-gradient(100% 0%, #055E74 0%, #132B47 100%); */
}

    #product .list {
        width: 100%;
    }

        #product .list .item {
            width: 100%;
            height: 3.2rem;
            background-color: #f6f6f6;
            background-image: url("/images/product_bg.png") no-repeat;
            background-size: 100% 100%;
            background-position: center center;
            padding: .266667rem;
            margin-bottom: .4rem;
        }

            #product .list .item .shop_img {
                display: block;
                width: 2.666667rem;
                height: 2.666667rem;
                background: #2556d2;
            }

            #product .list .item .info {
                width: 5.866667rem;
            }

                #product .list .item .info .title {
                    width: 100%;
                    font-size: .4rem;
                    color: #2556d2;
                    line-height: .56rem;
                }

                #product .list .item .info .detail {
                    width: 100%;
                    font-size: .346667rem;
                    color: #2556d2;
                    line-height: .48rem;
                    margin-top: .106667rem;
                }

                #product .list .item .info .right {
                    width: 100%;
                    margin-top: .16rem;
                }

                    #product .list .item .info .right a {
                        width: 2.586667rem;
                        height: .773333rem;
                        background-color: #2556d2;
                        background-image: url("/images/product_btn.png");
                        text-align: center;
                        line-height: .773333rem;
                        font-size: .373333rem;
                        color: #fff;
                    }




.model .updata_some {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: .426667rem .8rem;
    background: #fff;
}

    .model .updata_some .head {
        width: 100%;
        margin-bottom: .666667rem;
    }

        .model .updata_some .head .email {
            width: 2.453333rem;
            height: .853333rem;
            border: none;
            background: #0b5baa;
            text-align: center;
            line-height: .853333rem;
            color: #fff;
            font-size: .346667rem;
            line-height: .853333rem;
        }

        .model .updata_some .head i {
            display: block;
            width: .44rem;
            height: .426667rem;
            background-image: url("/images/down.png");
        }

    .model .updata_some .info {
        width: 100%;
        padding-bottom: .173333rem;
        padding-top: .173333rem;
        border-bottom: 1px solid #d2d2d2;
    }

        .model .updata_some .info:nth-last-of-type(1) {
            border-bottom: none;
        }

        .model .updata_some .info img {
            display: block;
            width: .933333rem;
            height: .933333rem;
            /* margin-left:.8rem; */
        }

        .model .updata_some .info .detail {
            width: 5.2rem;
            padding-left: .373333rem;
        }

            .model .updata_some .info .detail .title {
                font-size: .346667rem;
                color: #333;
            }

            .model .updata_some .info .detail p {
                font-size: .293333rem;
                color: #999;
                line-height: 1;
                margin-top: .16rem;
            }

.updata_some input[type="checkbox"] {
    display: none;
}

    .updata_some input[type="checkbox"] + label:before {
        content: '';
        display: inline-block;
        width: .32rem;
        height: .32rem;
        border: 1px solid #2556d2;
        border-radius: 50%;
        vertical-align: middle;
        margin-right: .186667rem;
        transition: all .5s;
    }

    .updata_some input[type="checkbox"]:checked + label:before {
        background: #2556d2;
    }


.parentdetail_box {
    padding:0rem 1rem;
}
    .parentdetail_box .gs_title {
        font-size:1.5rem !important;
    }
    .parentdetail_box .infos_detailbox {
        background-color: #fff;
        padding: 1.5rem 1rem 0rem;
        margin-bottom: 2rem
    }
    .parentdetail_box .bgcolor_none {
        background-color:transparent; 
    }

    .parentdetail_box .details_content .contet_list .de_l_list {
        width: 44%;
    }
    .parentdetail_box .details_content .contet_list .de_r_list {
        width: 56%;
    }
    .parentdetail_box .details_content .contet_list {
        font-size: 1.25rem
    }

/* 内嵌高德地图「授权经销商地址」文本标签 */
.skf-addr-label {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 17px;
    color: #333333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    white-space: normal;
    max-width: 260px;
    word-break: break-all;
}

