/* flex布局兼容 START */
.flex {
    /* 设置为flex盒子 */
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex_column {
    /* 垂直排列 */
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.flex_wrap {
    /* 允许换行 */
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_row_center {
    /* 水平方向上居中 */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.flex_row_start {
    /* 水平方向上居左 */
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}

.flex_row_end {
    /* 水平方向上居右 */
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

.flex_row_justify {
    /* 水平方向上等间距排列 */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

.flex_column_center {
    /* 垂直方向上居中 */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.flex_column_start {
    /* 垂直方向上居上 */
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}

.flex_column_end {
    /* 垂直方向上居下 */
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.flex1 {
    /* 占据1份大小 */
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex_rank_1 {
    /* 排列等级 */
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

.flex_rank_2 {
    /* 排列等级 */
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

/* flex END */


/* 居中 */
.center {
    width: 1200px;
    margin: 0 auto;
}


/* 清除浮动 */
.clear_float::after {
    content: ' ';
    display: block;
    clear: both;
}


.transition {
    /* 过度 */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/* 文本溢出隐藏 */
.one_row_text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.two_row_text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.iconfont {
    font-size: inherit;
    color: inherit;
}




/* header */
.fix-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 99;
}
body{
    padding-top: 70px;
}

.header_top {
    background-color: #000;
    position: relative;
}

.header_top .wide{
    position: relative;
    z-index: 2;
    background: #000;
}

.top_logo {
    width: 180px;
    float: left;
}

.top_logo a {
    line-height: 70px;
}

.header_title {
    line-height: 70px;
    width: 70%;
    margin-left: 2%;
}

.header_menu {
    float: left;
    line-height: 65px;
    display: none;
}

.header_menu_exit {
    display: none;
    width: 23px;
    color: #ffffff;
    font-size: 20px;
    float: left;
    line-height: 65px;
}

.active {
    color: #ad8773;
}

.header_title li {
    float: left;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    width: 12.5%;
}

.header_title li.on{
    color: #ad8773;
}

.header_title li:hover {
    color: #ad8773;
}

.header_title_search {
    float: right;
    line-height: 70px;
    width: 10%;
}

.header_title_search a {
    float: right;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

.header_title_search a:nth-of-type(2) {
    font-size: 32px;
    margin:0 10%;
}



.header_secondary {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: rgba(0, 0, 0, .7);
    color: #ffffff;
    text-align: center;
    z-index: 4;
    transition: all .5s;
}

.header_secondary .wide{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    transition: all .5s;
}

.scroll_sub_nav{
    position: fixed;
    height: 60px;
    line-height: 60px;
    left: 0;
    width: 100%;
}

.wrapper01 .swiper-slide{
    padding: 0 10px;
    width: auto;
    font-size: 16px;
}
.wrapper01{
    /* float: left; */
    flex: 1;
}


.header_secondary li::after {
    content: "";
    position: absolute;
    bottom: 14px;
    width: 0;
    height: 1px;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s;
}

.header_secondary li.on::after {
    width: 100%;
    left: 0;
}

.header_secondary li:hover::after {
    width: 100%;
    left: 0;
}

.crumbs_brand a:hover{
    color: #946f5b;
}

.static-bread{
    position: static;   
    background: #f9f9f9;
    color: #333;
}
.static-bread .crumbs_brand a{
    color: #333;
}
.static-bread .crumbs_brand .iconfont{
    color: #946f5b;
}
.static-bread .crumbs_brand a:hover{
    color: #946f5b;
}
.static-bread .crumbs_brand a:last-of-type{
    color: #946f5b;
}

.crumbs a {
    height: 80px;
}

.crumbs_brand {
    font-size: 14px;
    /* height: 80px; */
    /* float: right; */
}

.header_search {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: rgba(0, 0, 0, .7);
    color: #ffffff;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
}
.header_search .wide{
    position: static;
    background: none;
}

.head-pull{
    color: #fff;
    display: none;
}


.header_search_title {
    height: 30px;
    width: 30%;
    line-height: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 15px;
}

.header_search_btn {
    height: 30px;
    width: 5%;
    line-height: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s;
}

.header_search_btn:hover {
    background-color: #ad8773;
    color: #ffffff;
}

.header_search_exit {
    float: right;
    color: #ffffff;
    margin-right: 2%;
    cursor: pointer;
}

.header_search_exit:hover {
    color: #ad8773;
}


/* footer */

.footer {
    width: 100%;
    background-color: #272727;
    position: relative;
    z-index: 6;
}

.font_nav {
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.font_nav>li>a {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;

}

.font_nav ul li a {
    color: #acacac;
    line-height: 30px;
    transition: all .4s;
}
.font_nav ul li a:hover{
    color: #ad8773;
    transform: translate(3px, 0);
}
.font_nav>li {
    margin-right: 9%;
}

.font_nav>li:last-of-type {
    margin-right: 0;
}

.foot_bottom {
    background-color: #191919;
    padding: 40px 0;
}

.foot_bottom .wide{
    overflow: hidden;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.foot_bottom .footer-flex{
    display: flex;
    display: -webkit-flex;
}

.foot_bottom form{
    /*float: right;*/
}

.foot_bottom_content {
    margin-left: 7%;
    /*float: left;*/
}

.foot_bottom_content li a.active{
    font-weight: bold;
}
.foot_bottom_contact .yzm{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.foot_bottom_contact .yzm input{
    margin-right: 8px;
    width: 240px;
}
.foot_bottom_contact .yzm .yzm-img{
    margin-bottom: 10px;
    width: 100px;
    height: 29px;
    text-align: center;
    line-height: 29px;

}
.foot_bottom_img {
    height: 120px;
    width: 120px;
}
.foot_bottom_img img{
    width: 100%;
}

.foot_bottom_weixin{
    text-align: center;
}

.foot_bottom_weixin p {
    color: #acacac;
    margin-top: 14px;
}

.foot_bottom li {
    color: #acacac;
    line-height: 30px;
}

.foot_bottom .active {
    font-size: 18px;
}

.foot_bottom_contact {
    float: right;
    color: #acacac;
}

.foot_bottom_contact .input-box{
    position: relative;
    padding-left: 58px;
}

.foot_bottom_contact .input-box span:first-of-type{
    position: absolute;
    left: 0;
    top: 4px;
    width: 58px;
}
.foot_bottom_contact .input-box span.active{
    margin-left: 6px;
}

.foot_bottom_contact .input-box input, .foot_bottom_contact .input-box textarea{
    margin-left: 15px;
}

.foot_bottom_contact p {
    width: 100%;
    line-height: 29px;
}

.foot_bottom_contact p span.fr{
    margin-left: 10px;
}

.foot_bottom_contact input,
.foot_bottom_contact textarea {
    width: 350px;
    background-color: #272727;
    border-radius: 5px;
    margin-bottom: 10px;
}

.foot_bottom_contact input {
    height: 29px;
    padding-left: 5px;
    color: #acacac;
}

.foot_bottom_contact textarea {
    height: 63px;
    margin-right: 2%;
    padding-left: 5px;
    color: #acacac;
}

.foot_bottom_btn {
    background-color: #9f7b68;
    border-radius: 5px;
    color: #ffffff;
    border: 0;
    outline: none;
    height: 30px;
    width: 25%;
    margin-left: 15px;
}

/* banner */

.nei_banner img {
    width: 100%;
}

.nei_banner {
    position: relative;

}

.h5-banner{
    display: none;
}

.footer-h5-menu{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #000;
    z-index: 10;
    display: none;
}

.footer-menu{
    height: 60px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
}

.footer-menu a{
    text-align: center;
    width: 25%;
}

.footer-menu a:hover .iconfont, .footer-menu a:hover p{
    color: #9f7b68;
}

.footer-menu a .iconfont{
    font-size: 24px;
    color: #fff;
}
.footer-menu a p{
    margin-top: 4px;
    font-size: 14px;
    color: #fff;
}

.a-hide-links{
    padding: 0 15px;
    background: rgba(255, 255, 255, 1);
    display: none;
}
.a-hide-links a{
    color: #555;
    border-bottom: 1px dashed #999;
}
.a-hide-links a:hover{
    color: #ad8773;
}
.a-hide-links a:last-child{
    border-bottom: none;
}

/* 侧边栏 */
.aside-fixed{
    position: fixed;
    top: 40%;
    right: 4%;
    z-index: 4;
}
.aside-fixed .aside-box{
    position: relative;
    width: 46px;
    height: 46px;
    background: #aa8976;
    margin-bottom: 2px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.aside-fixed .aside-box:last-child{
    margin-bottom: 0;
}
.aside-fixed .aside-box:hover{
    background: rgba(170, 137, 118, .7);
}
.aside-fixed .aside-box:hover .aside-hide-box{
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.aside-fixed .aside-box .iconfont{
    font-size: 24px;
    color: #fff;
}
.aside-fixed .aside-box .aside-hide-box{
    position: absolute;
    right: 50px;
    padding: 10px;
    text-align: center;
    background: #aa8976;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(-20px, 0);
    transition: all .5s;
    z-index: 2;
}

.aside-fixed .aside-box .aside-hide-box .weixin-img{
    width: 120px;
    height: 120px;
}
.aside-fixed .aside-box .aside-hide-box .weixin-img img{
    width: 100%;
}
.aside-fixed .aside-box .aside-hide-box p{
    margin-top: 4px;
    font-size: 14px;
    color: #fff;
}
.aside-fixed .aside-box .aside-hide-box .tel{
    word-break: keep-all;
    white-space: nowrap;
    font-size: 18px;
}

.aside-fixed .aside-box .bds_tsina{
    margin: 0;
    padding: 0;
    background: none;
}

/* 分页 */
.paging {
    position: relative;
    margin-top: 50px;
    height: 35px;
}

.paging a {
    font-size: 14px;
    color: #666;
    box-sizing: border-box;
    margin: 0 5px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    border-radius: 3px;
    background: #eeeeee;
}

.paging .prev-bt {
    width: 65px;
}
.paging .prev-bta {
    width: 40px;
}

.paging .page {
    width: 40px;
}
.paging .prevPage,
.paging .nextPage {
    width: 65px;
}
.paging .firstPage,
.paging .lastPage {
    width: 45px;
}
.paging a.active,
.paging a:hover {
    background: #946f5b;
    color: #fff;
}
.paging .noPage {
    color: #999;
    cursor: default;
    background: #f4f4f4;
}
.paging .noPage:hover {
    color: #999;
    background: #f4f4f4;
}
.paging form {
    height: 35px;
    margin-left: 3px;
}
.paging form select {
    height: 35px;
    border: 5px solid #eee;
    border-radius: 3px;
    outline: none;
    width: 60px;
    padding-left: 5px;
    background: #fff;
}
.paging form select option {
    font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 20px;
    padding: 3px 0;
    outline: none;
}

/* 点击加载更多 */
.loadData {
    margin-top: 10px;
    text-align: center;
    display: none;
}
.loadData a {
    position: relative;
    color: #666;
    display: none;
    background: red;
    line-height: 36px;
    height: 36px;
    background: #946f5b;
    color: #fff;
}
.loadData .loading {
    background: none;
    color: #777;
}
.loadData .loadEnd {
    background: #eee;
    color: #999;
}
.loadData .active {
    display: block;
}

/* 图片居中 */
.picture_container {
    position: relative;
    overflow: hidden;
    /*background: #f4f4f4;*/
}
.picture_container.png {
    background: none;
}
.picture_container img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
    -o-transition: all 0.5s;
	transition: all 0.5s;
}



@keyframes moveArr{
    0%{
        transform: translate(24px, 0);
    }
    100%{
        transform: translate(-24px, 0);
    }
}
@keyframes moveArrReverse{
    0%{
        transform: translate(-24px, 0) rotate(180deg);
    }
    100%{
        transform: translate(24px, 0) rotate(180deg);
    }
}

.arr-btn{
    position: absolute;
    top: 50%;
    left: -24px;
    width: 24px;
    margin-top: -30px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #aa8976;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    display: none;
}
.arr-btn i{
    color: #fff;
    animation: moveArr 1.6s linear infinite;
}

.arr-btn-reverse i{
    animation: moveArrReverse 1.6s linear infinite;
}

/* 侧边栏 end */

.swiper-button-next, .swiper-button-prev{
    z-index: 3 !important;
}


.public-show-title {
    padding: 0 20px;
    height: 160px;
}
.public-show-title ul {
    height: 100%;
}
.public-show-title ul li {
    /* width: 100px; */
    text-align: center;
    width: auto;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.public-show-title ul li:last-child {
    margin-right: 0 !important;
}
.public-show-title ul li.on p{
    color: #9e7a67;
}

.public-show-title ul .img {
    height: 66px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.public-show-title ul p {
    margin-top: 16px;
    letter-spacing: 1px;
    color: #444444;
}
.public-show-title ul li:hover p{
    color: #9e7a67;
}

.scroll_menu, .scroll_menu_exit{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    line-height: 60px;
    background: #000;
    text-align: center;
    z-index: 999;
}
.scroll_menu_exit{
    color: #ffffff;
    font-size: 20px;
}


@keyframes trans60{
    0%{
        opacity: 0;
        transform: translate(0, 60px);
    }
    100%{
        opacity: 1;
        transform: translate(0, 0);
    }
}
.trans60{
    animation: trans60 1.5s ease-out backwards;
}

@keyframes transLeft{
    0%{
        opacity: 0;
        transform: translate(-100%, 0);
    }
    100%{
        opacity: 1;
        transform: translate(0, 0);
    }
}
.transLeft{
    animation: transLeft 1s;
}
@keyframes transRight{
    0%{
        opacity: 0;
        transform: translate(100%, 0);
    }
    100%{
        opacity: 1;
        transform: translate(0, 0);
    }
}
.transRight{
    animation: transRight 1s;
}

@keyframes trans0{
    100%{
        opacity: 1;
        transform: translate(0, 0);
    }
}
.trans0{
    animation: trans0 1s ease-out forwards;
}

@keyframes scale021{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
.scale021{
    animation: scale021 1s linear;
}

@keyframes transCenter{
    0%{
        opacity: 0;
        transform: translate(-50%, -150%);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.transCenter{
    animation: transCenter 1.5s ease-out backwards;
}


.animated{
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.wide{
    overflow: hidden;
}


/* 响应 */
@media screen and (min-width: 1920px){
    body{
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1400px) {
    .wide {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .font_nav>li {
        margin-right: 8%;
    }

    .aside-fixed{
        right: 30px;
    }
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1199px) {
    .pc-banner{
        display: none;
    }
    .h5-banner{
        display: block;
    }

    .font_nav>li{
        margin-right: 4.2%;
    }

    .foot_bottom_contact input, .foot_bottom_contact textarea{
        width: 328px;
    }

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

    .foot_bottom_contact .yzm input{
        width: 228px;
    }
    .foot_bottom_contact .yzm .yzm-img{
        width: 90px;
    }
}

@media screen and (max-width: 1024px) {
    body{
        padding-top: 60px;
    }
    .fix-header{
        height: 60px;
    }

    .header_top{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 100%;
        overflow-y: auto;
    }

    .top_logo {
        float: none;
    }

    .top_logo a{
        line-height: 60px;
    }

    .header_title {
        display: none;
        width: 100%;
        margin-left: 0;
        line-height: 60px;
        overflow-y: auto;
    }

    .header_menu{
        line-height: 60px;
    }

    .header_menu_exit{
        line-height: 60px;
    }
    .header_search {
        position: static;
        background: #666;
        transition: none;
    }

    .header_title li {
        float: none;
        position: relative;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header_title li:last-child{
        border-bottom: none;
    }

    .head-pull{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 56px;
        text-align: center;
        transition: all .5s;
    }

    .foot_bottom form{
        margin-left: 30px;
        margin-top: 30px;
    }

    .crumbs_brand {
        display: none;
    }

    .space_sub_nav{
        display: none;
    }

    .static-bread{
        height: 40px;
    }

    .header_menu {
        display: block;
    }


    .header_title_search {
        position: absolute;
        right: 10px;
        top: 0;
        line-height: 60px;
    }
    

    .header_title_search .iconsousuo {
        display: none;
    }

    .header_title_search .iconshangcheng {
        margin-left: 0;
    }

    .header_search_exit {
        display: none;
    }

    .header_search_btn {
        height: 35px;
        width: 9%;
    }

    .header_search_title {
        height: 35px;
        width: 55%;
    }

    .header_search {
        display: none;
    }
    
    .paging {
        display: none;
    }
    .loadData {
        display: block;
    }

    .wrapper01 .swiper-slide{
        padding: 0 6px;
    }

    .header_secondary{
        height: 70px;
        line-height: 70px;
    }

    .foot_bottom_contact .input-box span.active{
        position: absolute;
        right: 5px;
        top: 6px;
    }

    .foot_bottom_contact input{
        padding-right: 18px;
    }
    .foot_bottom_contact .yzm input{
        padding-right: 0;
    }

@media screen and (max-width: 992px) {
    .public-show-title ul{
        justify-content: flex-start;
        -webkit-justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    body{
        padding-bottom: 60px;
    }

    .header_title_search a:nth-of-type(1) {
        margin-left: 25%;
    }

    footer{
        display: none;
    }
    .footer-h5-menu{
        display: block;
    }

    .header_secondary{
        position: static;
    }
    .scroll_sub_nav {
        position: fixed;
        height: 60px;
        line-height: 60px;
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .header_title_search a:nth-of-type(1) {
        margin-left: 15%;
    }

    .aside-fixed{
        right: 15px;
        transition: all .5s;
        transform: translate(61px, 0);
    }

    .arr-btn{
        display: block;
    }

    
    .scroll-h5-footer{
        display: none;
    }

    .scroll_menu{
        display: block;
    }
    .fixed-menu .header_top{
        transform: translate(-100%, 0);
        transition: all .5s;
    }

    .fixed-menu .header_search{
        display: block;
    }
    .fixed-menu .header_title{
        display: block;
    }
    .fixed-menu .header_menu{
        display: none;
    }
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 425px) {}
<!--耗时0.00030398368835449秒-->