.search-bar #quick-order{
    width: 20rem;
    height: 4rem;
    /*margin-left: 25px;*/
    border: none;
    border-radius: 5px;
    font-size: 1.6rem;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: -0.1rem;
    background-color:#FF6817;
    color:#fff;
}

.search-bar #quick-order:hover{
    background-color:#FD8544;
}

.index-foot-content,.index-foot-keyword{
    margin-top: 25px;
    word-spacing: 2px;
}
.index-foot-content .title,.index-foot-keyword .title{
    font-size: 16px;
    font-weight: bold;
}
.index-foot-content .content{
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    text-indent: 2em;
}
.index-foot-keyword .content{
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    margin-left: 2em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index-foot-keyword .content .keyword{
    display: inline-block;
    width: calc(25% - 10px);
    text-align: left;
}

.showmore-button {
    border-top: 1px solid #ccc;
    margin-top: -1px;
    text-align: left;
}
.showmore-button-inner {
    /*background: #727272;*/
    display: inline-block;
    /*padding: 12px 14px;*/
    line-height: 14px;
    font-size: 14px;
    color: #317CAD;
    cursor: pointer;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
/*.showmore-button-inner:hover {*/
/*    background: #666;*/
/*}*/
.showmore-button-inner.more:after{
    content:'';
    display:inline-block;
    width:0;
    height:0;
    margin-left:6px;
    border-style:solid;
    border-width:6px 4px 0 4px;   /* 下箭头 */
    border-color:#317CAD transparent transparent transparent;
    transition:transform .2s;
    position: relative;
    top: -2px;
}
.showmore-button-inner.less:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-style: solid;
    border-width: 0 4px 6px 4px; /* 上箭头 */
    border-color: transparent transparent #317CAD transparent;
    transition: transform .2s;
    position: relative;
    top: -2px;
}