﻿@charset "utf-8";
* {
    touch-action: pan-y;
}
ul, ol, menu {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}
a {
    color: #555555;
    background: transparent;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/*下拉菜单导航*/
.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.bounce-in-down {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes fadeInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.fade-in-down {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.bounce-out-up {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeOutUp {
    20% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    20% {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fade-out-up {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
.menu-open {
    height: 100%;
    width: 100%;
}
.menu-open .mui-scroll-wrapper {
    position: absolute;
    top: 48;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.menu-backdrop {
    display: none;
}
.menu-open .menu-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 998;
}
.menu-wrapper {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 999;
    text-align: center;
    background-color: #333;
    width: 100%;
}
.menu-wrapper.hidden {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    z-index: -1;
}
.menu {
    width: 100%;
}
.menu .mui-table-view-inverted {
    color: gray;
    font-size: 19px;
}
.menu .mui-table-view-inverted .mui-table-view-cell:after {
    height: 2px;
    left: 0;
    right: 0;
}
.menu-wrapper.mui-active,
.menu-wrapper.mui-active .menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#info {
    padding: 20px 10px;
}
/*下拉菜单导航*/

/*数据统计滚动*/
#productNumber li {
    color: #001e5a;
}
#productNumber li:first-child,
#productNumber li:nth-child(2) {
    border-bottom: 1px solid #3c3c3c;
}
#productNumber li:nth-child(2),
#productNumber li:nth-child(4) {
    border-left: 1px solid #3c3c3c;
}
#productNumber li b {
    font-weight: bold;
    font-size: 25px;
    line-height: 1;
    display: inline-block;
    position: relative;
    margin: 10px 0;
}
#productNumber li b i {
    font-style: normal;
}
#productNumber li b sup {
    position: absolute;
    font-size: 20px;
    right: -15px;
    top: -3px;
}
#productNumber li b em {
    font-style: normal;
    font-size: 18px;
    font-weight: 100;
    padding-left: 2px;
    position: relative;
    color: #001e5a;
}
#productNumber li p {
    font-size: 14px;
}

.index_title {
    text-align: center;
    padding: 10px
}
.index_title .index_title_main {
    font-size: 0.9em;
    color: #000;
}
.index_title .index_title_sub {
    color: #415c82;
    margin-top: 5px;
    font-size: 0.8em;
}

.mui-grid-view img {
    width: 100%;
}

.home_search {
    position:relative;
}
.home_search input {
    background-color:#fff;
}
.home_search button {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #fd8000;
    color: #fff;
    z-index:99;
}

.housedic_search {
    position: fixed;
    top: 44px;
    z-index: 99;
    width: 100%;
    background-color: #fff;
}
.housedic_search input{
    background-color:#efefef;
}
.dic_nav_active{
    color:#bbafaa;
}
.p-page-nav {
    padding: 0.09375rem 0;
    height: 0.8rem;
    background-color: white;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    height: 1.625em;
    margin-top: -14px;
    z-index: 10;
}
.p-page-nav .item {
    height: 0.625rem;
    position: relative;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: box;
    box-pack: center;
    box-align: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
}
.li-dorplist {
    font-size: 1px;
    position: relative;
    top: -1px;
}
.p-page-nav .item.active {
    color: #dd1913;
}
.p-page-nav-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.p-page-nav-detail .section {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fafafa;
    z-index: 100;
}
.p-page-nav-detail .section .ul .row {
    line-height: 0.78125rem;
}
.p-page-nav-detail .section.show {
    display: block;
}
.right-line {
    width: 1px;
    height:25px;
    background-color: #d5d5d5;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.housedic img {
    width:100px;
    height:80px;
    border-radius:2px;
    margin-right:10px;
}
.index_center {
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
}
.index_top_info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.index_top_info .top_info_item {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 130px;
    margin-bottom: 30px;
}
.index_top_info .top_info_item .title_main {
    font-size: 15px;
    font-weight: bold;
    color: #684348;
}
/*.index_title {
    text-align: center;
}
.index_title .index_title_main {
    font-size: 25px;
    color: #000;
}
.index_title .index_title_sub {
    color: #415c82;
    margin-top: 10px;
}*/
.dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-top: 8px;
    position: absolute;
    margin-left: -15px;
    border-radius: 4px;
}
.pro_detail {
    text-align: left;
    margin-top: -10px;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.case {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.case .case_item {
    border: 1px solid #E1E1E1;
    overflow: hidden;
    margin-bottom: 30px;
    padding-bottom: 30px;
    margin-top: 30px;
    display: flex;
    width: 100%;
}
.case .case_item img {
    width: 530px;
    height: 380px;
    margin-left: 30px;
    margin-top: 30px;
}
.case .case_item .title {
    color: #333333;
    font-size: 32px;
    background: #fff;
    position: absolute;
    text-align: center;
    margin-top: -27px;
    margin-left: 480px;
}
.case .case_item .info {
    margin-left: 30px;
    margin-top: 30px;
    margin-right: 30px;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.weituo_box {
    width: 90%;
    height: 600px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    margin: auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: -100px;
    align-items: center;
    margin-bottom: 60px;
}
.weituo_box .title_main {
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px;
}
.weituo_box .title_sub {
    font-size: 0.9em;
    color: #666;
}
.weituo_box .wei_img {
    margin-top: 20px;
}
.weituo_box .weituo_pro {
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #999;
    margin: 5px;
}
.weituo_box .weituo_xq {
    background-color: #f6f6f6;
    width: 90%;
    height: 120px;
    margin-top: 20px;
    border-radius: 5px;
}
.weituo_box .weituo_xq .in_xq {
    width: 100%;
    height: 95px;
    margin: 10px;
    font-size: 16px;
    border: none;
    background-color: rgba(255,255,255,0);
}
.weituo_box .weituo_tel {
    background-color: #f6f6f6;
    width: 90%;
    height: 40px;
    margin-top: 20px;
    border-radius: 5px;
}
.weituo_box .weituo_tel .in_tel {
    width: 100%;
    height: 40px;
    margin-left: 10px;
    line-height: 32px;
    font-size: 16px;
    border: none;
    background-color: rgba(255,255,255,0);
}
.weituo_box .foot_btn {
    margin-top: 20px;
    background-color: #18a1e5;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 90%;
    border: none;
}
.weituo_box .tips {
    background-color: #f8f8f8;
    width: 100%;
    height: 80px;
    text-align: center;
    margin-top: 100px;
    line-height: 75px;
    color: #a1a1a1;
    font-size: 0.8em;
}

@-webkit-keyframes toastAnimation {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.75;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.25;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toastAnimation {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.75;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.25;
    }

    100% {
        opacity: 0;
    }
}

.toast {
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    width: 80%;
    position: fixed;
    z-index: 9999;
    left: 10%;
}

.toast-message {
    padding: 20px 20px;
    background-color: rgba(0,0,0,0.8);
    box-shadow: 0 8px 16px 0 rgba(51,51,51,0.30);
    border-radius: 8px;
    /*-webkit-animation:toastAnimation 2s ease-in 0s 1 normal;	
    animation:toastAnimation 2s ease-in 0s 1 normal;*/
}