<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --lyj-primary-color: #0058ab;
}


.content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 14px;
}


.sidebar {
    display: inline-block;
    margin-right: 50px;
    width: 500px;
}

.sidebar-title {
    color: white;
    background-color: #6b6d6d;
    padding: 5px 0 5px 15px;
    margin-bottom: 5px;
}

.content-body {
    display: inline-block;
    min-width: 40%;
    max-width: 50%;
    /*width: 645px;*/
    /* position: absolute;
     left: 50%;
     transform: translate( -50%);*/
}

.current-location {
    /*background-color: #cbcdcc;*/
}

.content-body-info {
    margin: 20px 0;
    background-color: #f3f8fe;
    padding: 20px 0 20px 35px;
    border-radius: 10px;
}

.content-body-info div {
    line-height: 25px;
}

.content-body-info .tips {
    color: var(--lyj-primary-color);
}


.dottbottom {
    border-bottom: 1px dotted #ccc;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
/**.dottbottom 最后一个不需要虚线**/
.dottbottom:last-child {
    border-bottom: none;
}

.submit-content {
    width: 70%;
    margin: 0 auto;
}

.search-form-container {
    margin: 20px 0;
    margin-bottom: 100px;
}

.search-result-title {
    text-align: center;
    font-size: 14px;
    color: var(--lyj-primary-color);
}

.search-result-form-top-title {
    font-size: 18px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-group &gt; label {
    /*width: 100px;*/
    text-align: right;
}

.form-group &gt; div {
    flex: 1;
}

.form-group &gt; div .form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #cacaca;
    box-sizing: border-box;
    border-radius: 5px;

}

.form-actions .c {
    text-align: center;
}

.form-actions button {
    background-color: var(--lyj-primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.form-actions .search-btn {
    margin-right: 20px;
}

.form-actions .reset-btn {
    background-color: #cacaca;
    color: black;
}

.search-result-content-has-border {
    border: 1px solid #cacaca;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
}

.search-result-container {
    font-size: 14px;
    margin-top: 20px;

}

.search-result-container &gt; div {
    line-height: 22px;
}

.search-result-info {
    color: var(--lyj-primary-color);
    font-size: 18px;
}

.search-result-info-error {
    color: red;
    font-size: 14px;
    text-align: center;
}

.search-result-container &gt; li .label {
    display: inline-block;
    width: 200px;
}



/*
* 手风琴样式 start
 */


.classify-container .layui-collapse {
    background-color: white;
    padding: 0 15px;
    border: none;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    min-height: 800px;
    max-height: 800px;
    overflow-y: auto;
    cursor: pointer;
    padding-right: 8px;
}

.layui-collapse .layui-colla-item {
    border: none;
}

.layui-colla-item .layui-colla-title {
    background-color: white;
    height: 55px;
    line-height: 55px;
}

.layui-colla-item .layui-colla-content {
    border: none;
    background-color: #fafafa;
    padding: 5px;
}

.layui-colla-content .layui-row {
    margin: 10px 0;
}

.layui-colla-content .layui-row &gt; div {
    /*padding: 0 10px;*/
}


.layui-colla-content .layui-row &gt; div .grid-demo {
    background-color: white;
    color: black;
    padding: 3px  10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.layui-collapse .layui-colla-icon {
    right: 15px;
    left: unset;
}

.layui-collapse  .no-child .layui-colla-icon {
    display: none;
}



/*
* 手风琴样式 end
 */


/*分类选中效果*/
.layui-colla-content .layui-row &gt; div .grid-demo-active {
    background-color: var(--lyj-primary-color);
    color: white;
    border-radius: 3px;
    box-sizing: border-box;
}



/**
* 滚动条样式 start
*/

.layui-collapse::-webkit-scrollbar {
    width: 8px; /* 可根据需要调整宽度 */
}

.layui-collapse::-webkit-scrollbar-track {
    background-color: white;
}

.layui-collapse::-webkit-scrollbar-thumb {
    background-color: #e8e6e6;
    border-radius: 4px; /* 可根据需要调整半径 */
}

.layui-collapse::-webkit-scrollbar-thumb:hover {
    background-color: #e8e6e6;
}

/**
  * 滚动条样式 end
  */
</pre></body></html>