﻿/*导航菜单样式，效果*/
.fontactive {
    color: #fff !important;
    font-weight: 700;
}

.fontcolor {
    /* color: #333 !important; */
    color: #F49D1B !important;
    font-weight: 700;
}

/*二级菜单*/
/* .region .showMenu {
    display: none;
} */

.region .navMenu {
    background-color: #fff;
    width: 100%;
}

/*查看所有按钮*/
.showMenu .product-all-url {
    position: absolute;
    top: 90%;
    font-size: 14px;
    color: #fff;
    width: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showMenu .product-all-url a {
    color: #fff;
}

.showMenu .product-all-url .product-btn {
    height: 32px;
    background-color: #494949;
    width: 120px;
    text-align: center;
    line-height: 32px;
    border-radius: 20px;
}

.showMenu .product-all-url .product-btn:hover {
    background-color: #F49D1B;
}

/*产品列表*/
.showMenu .product_item_div {
    background-color: #ebebeb;
    text-align: center;
    height: 200px;
    width: 200px;
    border-radius: 10px;
}

.showMenu .product_item_div img {
    animation: typing 0.6s 1;
}

@keyframes typing {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product_item_text {
    text-align: center;
    width: 200px;
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 12px;

}

.product_item_text_div {
    line-height: 22px;
}

.product_item_text span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product_item_name {
    font-size: 16px;
    color: #333;
}

.showMenu .product_item_name_title {
    font-size: 16px;
    color: #333
}

.product_item_name_subhead {
    font-size: 12px;
    color: rgba(51, 51, 51, 0.7);
}

.showMenu .menu-second-content {
    width: 100%;
    opacity: 1;
    border: 0px solid green;
    height: 290px;
    display: flex;
    position: absolute;
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 40px;
}

.showMenu .menu-second-item>a:hover img {
    transform: translate3d(0, 8px, 0);
    -webkit-transform: translate3d(0, 8px, 0);
    -moz-transform: translate3d(0, 8px, 0);
    -ms-transform: translate3d(0, 8px, 0);
    -o-transform: translate3d(0, 8px, 0);

    -webkit-transition: transform .6s ease;
    -moz-transition: transform .6s ease;
    -ms-transition: transform .6s ease;
    -o-transition: transform .6s ease;
    transition: transform .6s ease;
}

.showMenu .menu-second-item>a img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showMenu .menu-second-item,
.menu-second-item>a {
    margin: 0px 13px 30px 0px;
    color: rgba(51, 51, 51, 0.7);
    font-size: 12px;

}

.showMenu .product_item_div_img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/*滚动条样式*/
.scrollBarStyle::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*宽高分别对应横竖滚动条的尺寸*/
}

.scrollBarStyle::-webkit-scrollbar-thumb {
    /*滚动条里面的小方块*/
    /* border-radius:10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
    background: #bbb;
    border-radius: 5px;
}

.scrollBarStyle::-webkit-scrollbar-track {
    /*滚动条里面的轨道*/
    /* border-radius:10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
    background: rgba(0 0 0 / 3%);
}

.showMenu .menu-series-box ul li {
    float: left;
}

.showMenu .menu-second-series {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    height: 398px;
    border: 0px solid #F49D1B;
    box-sizing: border-box;
    position: relative;
   
    overflow: hidden;
}

.showMenu .menu-second-series .prev {
    left: 0;
}

.showMenu .menu-second-series .next {
    right: 0;
    margin-left: 760px;
}

.showMenu .menu-second-series .prev,
.menu-second-series .next {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    z-index: 999;
    width: 25px;
    height: 40px;
    cursor: pointer;
    background-color: rgba(96, 100, 96, 0.4);
    opacity: 0;
    padding-top: 5px;
}

.showMenu .menu-second-item {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.showMenu .menu-series-box {
    position: relative;
    z-index: 1;
    background-color: #444;
    text-align: center;
    padding-top: 46px
}

.showMenu .menu-second-type {
    margin: 0 16px;
    cursor: pointer;
}

.showMenu .menu-second-type.active {
    color: #000
}

.menu-second-type>a {
    color: inherit;
    /*让a标签继承父级li标签的颜色*/
}

.showMenu .menu-second-type {
    font-variation-settings: 'wght' 550;
    letter-spacing: -0.1px;
    font-size: 12px;
    font-family: Source Han Sans SC-Medium, Source Han Sans SC;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 14px;
}

.showMenu .menu-second {
    display: flex;
    border: 0px solid red;
    text-align: center;
    margin-bottom: 12px
}

ul {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}

ul li {
    list-style: none;
    font-weight: normal;
}

.region .searchBox .search-all {
    display: flex;
}

.searchBox .search-all .search-all-img {
    margin-right: 4px;
}

.searchBox .search-all .search-all-img img {
    height: 30px;
    width: 100%;
}

.searchBox .searchBox-text {
    width: 98px;
    height: 26px;
    background-color: #F49D1B;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchBox .searchBox-text a {
    color: #fff;
}

.searchBox .searchBox-text:hover {
    background-color: #fff;
    border: 1px solid #F49D1B
}

.searchBox .searchBox-text:hover a {
    color: #F49D1B;
}

/*服务与售后*/
.service-sale a {
    cursor: pointer;
    color: inherit;
}

.service-sale a:hover {
    color: #F49D1B !important;
}

.serviceColor {
    color: #F49D1B !important;
    font-weight: bold;
}

.service-sale {
    width: 1300px;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
}

.serviceOn {
    color: #F49D1B;
}

.service-tab {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-tab span {
    font-size: 24px;
    font-weight: bold;
}

.service-tab ul {
    display: flex;
}

.service-tab ul li {
    border: 1px solid #fff;
    border-radius: 20px;
    background-color: #f2f2f2;
    margin-left: 20px;
}

.service-tab ul li a {
    color: #666;
    padding: 8px 40px;
    display: block;
}

.service-content .service-url {
    color: #999;
    margin: 40px 0;
}

/*服务条款*/

/*保修服务*/
.service-warranty {
    /* margin-bottom: 40px; */
}

.service-warranty img {
    max-height: 400px;
}

.warrantyService {
    display: none;
}

/*关注联系*/
.service-contact .contact-items {
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}

.service-contact .contact-item,
.service-warranty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
}

.service-contact .contact-item .title {
    margin-bottom: 20px;
}

.service-contact .contact-item-official {
    margin-top: 20px;
    display: flex;
    font-size: 32px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.service-contact .contact-item-official img {
    margin-right: 12px;
}

.service-contact .contact-text {
    margin: 72px 0 40px 0;
    background-color: #F2F2F2;
    padding: 20px 0;
    text-align: center;
    border-radius: 6px;
}

.service-contact .contact-item-scan {
    margin-top: 20px
}

.service-contact .mapList {
    margin: 40px 0 60px 0;
    border-top: 1px solid #e5e5e5;
    padding-top: 80px;
}

.mapList .mapList-items {
    width: 400px;
}

.mapList .mapList-items .mapList-items-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.map-search {
    position: relative;
    width: 380px;
}

.mapKeyWordInput input {
    width: 380px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid #888;
    outline: none;
    text-indent: 20px;
}

/*常见问题*/
.service-content .problems-search {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-content .problems-search ul {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-around;
}

.service-content .problems-search ul li {
    padding: 0 10px;
    border-right: 1px solid #999;
    cursor: pointer;
}

.service-content .problems-search ul li:hover {
    color: #F49D1B;
}

.service-content .problems-search ul li:last-child {
    border-right: 0;
}

.service-content .problems-content {
    width: 60%;
    margin: 40px auto;
    color: #555;
}

.service-content .problems-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 100px;
    margin-bottom: 40px;
}

.service-content .problems-content ul li {
    padding: 29px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.problems-content a .problems-desc {
    display: flex;
    border: 0px solid red;
    justify-content: space-between;
}

.problems-content a .problems-svg {
    display: flex;
    align-items: center;
}

.problemsKeyWordInput input {
    width: 346px;
    height: 42px;
    border-radius: 40px;
    border: 1px solid #888;
    outline: none;
    text-indent: 20px;
}

.search-keyword {
    width: 346px;
    position: relative;
}

.nosearch {
    color: #555;
    display: none;
    font-size: 28px;
    margin-bottom: 60px;
    min-height: 300px;
    border: 0px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapIcon-pc {
    position: absolute;
    top: 50%;
    right: 6%;
    margin-top: -12px;
}

.service-page {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    height: 30px;
    color: #333;
}

.pageLeft,
.pageRight {
    cursor: pointer;
    width: 50px;
    text-align: center;
    border: 0px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pageNum {
    border: 1px solid #cfcfcf;
    width: 30px
}

.pageLimit {
    width: 76px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
}

/*专属渠道*/
.service-content .channel-page {
    background-color: #f2f2f2;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 6px;
}

.service-content .channel-page p {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-content .channel-page ul {
    display: grid;
    flex-wrap: wrap;
    border-top: 1px solid #E3E3E3;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 30px;
    padding: 40px 0 20px 0;
}

.service-content .channel-page ul li {
    font-size: 20px;
    color: #666;
}

/*首页搜索*/
.searchContentList ul li:nth-child(1) {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
}

.searchContentList ul li:nth-child(2) {
    transform: translateX(110px);
    -webkit-transform: translateX(110px);
    -moz-transform: translateX(110px);
    -ms-transform: translateX(110px);
    -o-transform: translateX(110px);
    opacity: 0;
}

.searchContentList ul li:nth-child(3) {
    -webkit-transform: translateX(120px);
    -moz-transform: translateX(120px);
    -ms-transform: translateX(120px);
    -o-transform: translateX(120px);
    transform: translateX(120px);
    opacity: 0;
}

.search-content,
.search-content-mobile {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 0;
    /* width: 590px; */
    width: 732px;
    height: 44px;
    position: relative
}

.search-content input,
.search-content-mobile input {
    /* width: 590px; */
    width: 732px;
    height: 44px;
    border: 1px solid #bfbfbf;
    border-radius: 32px;
    text-indent: 20px;
}

.search-new {
    display: none;
    width: 78%;
    border: 0px solid red;
}

.search-new .searchContentInput,
.searchContentInput-mobile {
    display: flex;
    align-items: center;
    position: relative;
}

.search-new .searchInputIcon,
.searchInputIcon-mobile,
.search-new-page .searchNewInputIcon {
    top: 10px;
    /* left:10px; */
    right: 10px;
    width: 32px;
}

.search-new-mobile {
    display: none;
}

/*首页跳转到搜索页面*/
.search-new-page {
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    margin-bottom: 40px;
}

.search-new-page .searchNewContentInput {
    width: 590px;
    margin: 0 auto;
}

.search-new-page .search-text {
    width: 590px;
    height: 44px;
    position: relative;
    margin-top: 60px;
}

.search-new-page .search-text input {
    width: 590px;
    height: 44px;
    border: 1px solid #bfbfbf;
    border-radius: 32px;
    text-indent: 20px;
}

.search-new-page .search-type {
    width: 590px;
    margin: 40px auto 0 auto;
}

.search-new-page .search-type ul {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: rgba(51, 51, 51, 0.69);
    font-size: 16px;
    cursor: default;
}

.search-new-page .search-type ul li {
    margin-right: 60px;
    padding-bottom: 12px;
    position: relative;
}

.search-new-page .search-type ul li:last-child {
    margin-right: 0;
}

.search-new-page .search-type ul li::before {
    content: "";
    position: absolute;
    top: 0;
    /* left:0; */
    left: 50%;
    border-bottom: 2px solid #F49D1B;
    width: 0;
    height: 100%;
    opacity: 0;

    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;

    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);

    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

}

.search-new-page .search-type ul li:hover::before {
    width: 100%;
    /* transition: 0.2s all linear;
    transition-delay: 0.1s; */
    /* width:calc(100% - 32px); */
    opacity: 1;
}

.search-type ul li.type-item::before {
    width: 100%;
    opacity: 1;
}

.search-new-page .search-type ul li:hover,
.contents-title .search-more:hover,
.search-products-items ul li a:hover {
    color: #F49D1B !important;
}

.search-new-page .search-products-items ul li a {
    color: #333;
    font-size: 16px;
}

/*内容*/
.search-new-page-contents {
    width: 832px;
    margin: 0 auto;
    border: 0px solid red;
}

.search-new-page-contents .contents-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
    color: #999;
    font-size: 12px;
}

.search-new-page-contents .contents-title .search-more {
    cursor: default;
}

.search-new-page-contents .contents-title-name {
    color: #999;
    font-size: 12px;
}

.search-new-page-contents .contents-title-name .name {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

/*产品*/
.search-new-page-contents .search-products {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    /* height: 409px; */
    overflow: hidden;
}

.search-new-page-contents .search-products-items ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
}

.search-new-page-contents .search-products-items ul li {
    border: 0px solid red;
    margin-bottom: 60px;
}

.search-new-page-contents .search-products-items ul li a {
    color: #333;
    font-size: 16px;
}

.search-new-page-contents .search-products-items img {
    width: 178px;
}

.search-new-page-contents .products-name {
    margin-top: 12px;
    max-width: 178px;
}

.search-new-page-contents .products-text {
    color: #999;
    font-size: 12px;
    margin: 2px 0 20px;
    max-width: 178px;
}

.search-new-page-contents .products-url {
    font-size: 12px;
}

/*常见问题*/
.search-new-page-contents .search-problems {
    margin-bottom: 40px;
    padding-bottom: 60px;
    /* height: 704px; */
    overflow: hidden;
}

.search-new-page-contents .problems-contents ul li {
    margin-bottom: 40px;
    /* border:1px solid red; */
}

.search-new-page-contents .problems-contents ul li a {
    font-size: 16px;
}

.search-new-page-contents .problems-name {
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.search-new-page-contents .problems-text {
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.search-new-page-contents .problems-url {
    color: #F49D1B;
    display: block;
}

/*无搜索结果*/
.search-no {
    display: block;
    margin-bottom: 80px;
    color: #999;
    font-size: 12px;
}

.search-no .search-no-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.search-no .search-no-hot {
    margin-top: 40px;
}

.nosearch {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 下载与支持：首页 */
.supportBan {
    position: relative;
    z-index: 1;
}

.supportBan .support-nodata {
    display: none;
    font-size: 18px;
    background-color: #fff;
    margin-top: 20px;
    position: absolute;
    width: 100% !important;
    padding: 10px 0;
}

.supportBan .supportInput ol {
    text-align: left;
    height: 152px;
}

.supportBan .supportInput .supportlist {
    border-radius: 0;
}

.supportBan .support-title-shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
}

/*下载与支持：产品说明书、软件、app下载*/
.supportProductDownload {
    margin-top: 20px;
    padding: 20px;
}

.support-download {
    margin: 20px 0 80px 0;
}

.support-download ul {
    display: flex;
    justify-content: center;
}

.support-download ul li {
    width: 304px;
    height: 210px;
    margin-right: 20px;
    background-color: #F6F7FA;
    border-radius: 8px;
    color: #000;
    font-size: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support-download ul li:last-child {
    margin-right: 0;
}

.support-download ul li span {
    margin-top: 10px;
}

.support-download ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
}

.supportProductDownload .shadow-pop {
    top: 20%;
    left: 50%;
    position: fixed;
    z-index: 10;
    background-color: #fff;
    width: 500px;
    margin-left: -250px;
}

.supportProductDownload .pop-title {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

/* .supportProductDownload .support-shadow{ */
.support-shadow {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
}

.supportProductDownload .support-shadow ul {
    margin: 0 20px;
}

.supportProductDownload .support-shadow ul li {
    padding: 23px 20px;
    border-bottom: 1px solid #e4e4e4;
}

.supportProductDownload .support-shadow ul li a {
    color: #333;
    display: flex;
    justify-content: space-between;
}

.supportProductDownload .pop-download {
    width: 60px;
    height: 30px;
    background-color: #F49D1B;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 5px;
}

.supportProductDownload .popnodata {
    margin: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.supportProductDownload .pop-close {
    position: absolute;
    right: 20px;
}

.book,
.app,
.software {
    display: none;
}

/*产品详情*/
.productDetail {
    font-size: 16px;
    color: #333;
    width: 100%;
    position: fixed;
    z-index: 1100;
    height: 80px;
    background-color: #fff;
    box-shadow: 0px 1px 5px #eee;
    top: 68px;
}

.productContent {
    margin-top: 70px;
}

.productDetail-on {
    color: #F49D1B !important;
}

.productDetail .productDetail_nav {
    /* margin:20px 0; */
    margin-top: 20px;
    color: #999
}

.buyLink .buyLinkHref {
    font-size: 14px;
    width: 98px;
    height: 28px;
    color: #fff;
    background-color: #00a0ea;
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detailnav {
    /* margin-bottom: 20px; */
}

.detailnav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 18px;
    color: rgba(51, 51, 51, 0.5);
}

.detailnav ul li {
    padding-left: 24px;
}

.detailnav ul li a {
    color: inherit;
}

/* 规格，配件 */
.color_fff {
    /*黑底红字，规格配件黑色字体改为白色*/
    color: #fff
}

.productDetail_spec,
.productDetail_parts {
    width: 70%;
    margin: 0 auto;
}

.spec_title {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
}

.spec_title_p {
    width: 50%;
}

.spec_title a {
    max-width: 220px;
    color: #999;
    font-weight: 500;
    font-size: 16px;
}

.spec_title a:hover {
    color: #F49D1B;
}

.spec_content,
.parts_content {
    padding: 40px 0;
    font-size: 16px;
}

.spec_content ul li {
    display: flex;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}

.spec_content ul li:first-child {
    padding-top: 0;
    border-top: 0px;
}

.spec_content li .spec_li_text {
    width: 30%;
    font-size: 18px;
}

.spec_content li .spec_li_div dl dd {
    color: #999;
}

.spec_content li .spec_li_div dl dt {
    margin-bottom: 8px;
    margin-top: 20px;
}

.spec_content li .spec_li_div dl dt:first-child {
    margin-top: 0;
}

.parts_title {
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.parts_content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parts_content ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: 500px;
    background-color: #F6F7FA;
    margin-bottom: 20px;
    border-radius: 5px;
}

.parts_content ul li:first-child {
    margin-top: 0;
}

.parts_content ul li span {
    padding-right: 20px;
}

.parts_content ul li img {
    width: 160px;
}