


.Club-Search-Page{
    position: relative;
}
.Club-Search-Page > .container-fluid{
    position: relative;
}
.Club-Search-Page .Page-title{
    position: relative;
    margin: 0 0 50px;
    padding: 0;
    color: #232c64;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}
.Club-Search-Page .Page-title::before{
    content: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: #b6e5f7;
}
.Club-Search-Page .Page-title > span{
    position: relative;
    display: inline-block;
    /* padding: 0 20px 0; */
    /* background-color: #fff; */
}
@media only screen and (max-width: 767px) {
    .Club-Search-Page .Page-title{
        font-size: 28px;
    }
}
.Club-Search-Page .Club-Search-Box{
    position: relative;
    margin-bottom: 25px;
    z-index: 2;
}
.Club-Search-Page .Club-Search-Box .Search-Main{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.Club-Search-Page .Club-Search-Box .Search-Main .search-item{
    width: calc( 100% / 5 );
    margin-bottom: 20px;
    padding: 0 5px;
}
.Club-Search-Page .Club-Search-Box .Search-Button{
    position: relative;
    margin-top: 10px;
    text-align: center;
}
.Club-Search-Page .Club-Search-Box .Search-Button button{
    display: inline-block;
    padding: 9px 42px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    background: #243b7a;

    outline: none;

    border: none;
    border-radius: 100px;
    white-space: nowrap;

    transition: all ease-in 300ms;
    -webkit-transition: all ease-in-out 300ms;
}
.Club-Search-Page .Club-Search-Box .Search-Button button:hover{
    text-decoration: none;
    background: #0090ba;
}
@media only screen and (max-width: 1399px){
    .Club-Search-Page .Club-Search-Box .Search-Main .search-item{
        width: calc( 100% / 3 );
    }
}
@media only screen and (max-width: 991px){
    .Club-Search-Page .Club-Search-Box .Search-Main .search-item{
        width: calc( 100% / 2 );
    }
}
@media only screen and (max-width: 767px) {
    .Club-Search-Page .Club-Search-Box .Search-Main .search-item{
        width: calc( 100% / 1 );
    }
    .Club-Search-Page .Club-Search-Box .Search-Button button{
        padding: 5px 20px;
        font-size: 16px;
        line-height: 1.4;
    }
}



.Club-Search-Page .Search-Result-Box{
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    z-index: 1;
}
.Club-Search-Page .Search-Result-Box::before,
.Club-Search-Page .Search-Result-Box::after{
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;
    opacity: 0;
    pointer-events: none;

    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
}
.Club-Search-Page .Search-Result-Box::before{
    background-color: rgba(255, 255, 255, 0.7);
}
.Club-Search-Page .Search-Result-Box::after{
    background-image: url("../images/ajax-loader.gif");
    background-position: center;
    background-repeat: no-repeat;
}
.Club-Search-Page .Search-Result-Box[data-loading="true"]{
    z-index: 2;
}
.Club-Search-Page .Search-Result-Box[data-loading="true"]::before,
.Club-Search-Page .Search-Result-Box[data-loading="true"]::after{
    opacity: 1;
    pointer-events: all;
    z-index: 9999;
}
.Club-Search-Page .Search-Result-Box .Result-header{
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #efefef;
}
.Club-Search-Page .Search-Result-Box .Result-header .item{
    flex-grow: 0;
    flex-shrink: 0;

    padding-right: 15px;

    color: #0090ba;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    
}
.Club-Search-Page .Search-Result-Box .Result-body{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    max-height: none;
}
.Club-Search-Page .Search-Result-Box .Result-body[data-empty="true"]{
    min-height: auto;
    max-height: none;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-empty{
    display: none;
    font-size: 22px;
}
.Club-Search-Page .Search-Result-Box .Result-body[data-empty="true"] .Result-empty{
    display: block;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-load{
    width: 100%;
    height: 1px;
    margin-top: -1px;
    background-color: transparent;
    transform: translateY(-50px);
    pointer-events: none;
}
.Club-Search-Page .Search-Result-Box .Result-body[data-empty="true"] .Result-load{
    display: none;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main{
    flex-grow: 1;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day{
    margin-bottom: 20px;
    flex-shrink: 0;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day:last-child{
    margin-bottom: 0;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .t{
    display: block;
    padding: 5px 0;
    margin-bottom: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background-color: #ececec;
    text-transform: uppercase;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c{
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c:last-child{
    border-bottom: none;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div{
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 15px;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result_popup{
    display: none;
}


.Club-Search-Page .Search-Result-Box .Result-footer{
    position: relative;
    margin-top: 30px;
    text-align: center;
}
.Club-Search-Page .Search-Result-Box .Result-footer > .load-btn{
    display: inline-block;
    padding: 9px 42px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    background: #243b7a;

    border: none;
    border-radius: 100px;
    white-space: nowrap;
    outline: none;

    transition: all ease-in 300ms;
    -webkit-transition: all ease-in-out 300ms;
}
.Club-Search-Page .Search-Result-Box .Result-footer > .load-btn:hover{
    text-decoration: none;
    background: #0090ba;
}
.Club-Search-Page .Search-Result-Box[data-loadall="true"] .Result-footer > .load-btn{
    display: none;
}
@media only screen and (max-width: 767px) {
    .Club-Search-Page .Search-Result-Box .Result-footer > .load-btn{
        padding: 5px 20px;
        font-size: 16px;
        line-height: 1.4;
    }
}



/* 控件分配大小,间距 */

.Club-Search-Page .Search-Result-Box .Result-header .item,
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div{
    display: none;
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(-n+6),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(-n+6){
    display: block;
    width: 0;
    flex-grow: 1;
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(6),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6){
    width: 2em;
    padding-right: 0;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6) a{
    display: inline-block;
    width: 2rem;
    min-height: 1rem;
    font-size: 0;
}
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6) a > svg{
    color: currentColor;
    font-size: 1.4rem;
    width: 1em;
    height: 1em;
    fill: currentColor;
}
/* 
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(1),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(1){
    width: 20%; 
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(2),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(2){
    width: 20%; 
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(3),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(3){
    width: 20%; 
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(4),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(4){
    width: 20%; 
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(5),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(5){
    width: 20%; 
}
.Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(6),
.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6){
    width: 20%; 
} 
*/

.Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c{
    transition: color ease-in 300ms;
    -webkit-transition: color ease-in-out 300ms;
}
@media only screen and (min-width: 768px) {
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c:hover{
        color: #3997e8;
    }
}
@media only screen and (max-width: 767px) {
    .Club-Search-Page .Search-Result-Box .Result-header{
        display: none;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c{
        flex-wrap: wrap;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(n){
        width: 50%;
    }

    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c{
        position: relative;
        flex-direction: row;
        padding-right: 0;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div{
        order: 12;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(2){
        order: 1;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(4){
        order: 2;
        padding-right: 2em;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(1){
        order: 3;
        width: 100%;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(5){
        order: 4;
    }
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(3){
        order: 5;
    }

    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(2),
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(5){
        color: #0090ba;
        font-weight: bold;
    }

    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6){
        position: absolute;
        top: 5px;
        right: 0;

        font-size: 1em;
        width: 2em;
        transform: translate3d(0,0,0);
    }
}

/* 弹窗样式 */
.mfp-wrap .Result_popup{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: calc( 100% - 30px );
    max-width: 600px;
    max-height: 80vh;
    padding: 76px 55px 58px;

    color: #4e4e4e;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    background-color: #fff;
}
.mfp-wrap .Result_popup .mfp-close{
    width: 55px;
    height: 55px;

    color: #0278a5;
    font-size: 46px;
    line-height: 55px;
}

.mfp-wrap .Result_popup > div.name{
    margin-bottom: 22px;
    color: #232c64;
}
.mfp-wrap .Result_popup > div.club span{
    color: #3997e8;
}
.mfp-wrap .Result_popup > div.summary{
    margin-top: 20px;
    overflow-y: auto;
    font-weight: normal;
}

.mfp-wrap .Result_popup > div.name,
.mfp-wrap .Result_popup > div.week,
.mfp-wrap .Result_popup > div.time,
.mfp-wrap .Result_popup > div.instructor,
.mfp-wrap .Result_popup > div.club{
    font-weight: bold;
}


@media only screen and (max-width: 767px) {
    .mfp-wrap .Result_popup{
        padding: 40px 20px 26px;
    }
    .mfp-wrap .Result_popup .mfp-close{
        width: 40px;
        height: 40px;

        font-size: 32px;
        line-height: 40px;
    }
}



/* xm-select */
body xm-select{
    min-height: 50px;
    line-height: 36px;

    border-color: #b6e5f7;
    border-width: 2px;

    transition: border-color ease-in 300ms;
    -webkit-transition: border-color ease-in-out 300ms;
}
body xm-select:hover,
body xm-select:focus{
    border-color: #b6e5f7;
}
body xm-select *{
    font-size: 20px;
}
body xm-select > .xm-icon{
    top: 3px;
    right: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 46px;

    color: #fff;
    font-size: 20px;

    border: none;
    border-left: 2px solid #b6e5f7;
    background-color: #0090ba;

    transition: border-color ease-in 300ms;
    -webkit-transition: border-color ease-in-out 300ms;
}
body xm-select > .xm-icon.xm-icon-expand{
    margin-top: -3px;
    transform: rotate( 0 );
    border-left: 2px solid #0090ba;
}
body xm-select > .xm-icon::before{
    content: "";

    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-radius: 3px;
    border-radius: 3px;
    transform: rotate( 45deg ) translate(-2px, 2px);

    transition: transform ease-in 300ms;
    -webkit-transition: transform ease-in-out 300ms;
}
body xm-select > .xm-icon.xm-icon-expand::before{
    transform: rotate( 135deg ) translate(-2px, 2px);
}
body xm-select > .xm-tips{
    left: 15px;
    color: #4e4e4e;
    font-size: 18px;
}
body xm-select > .xm-label.single-row{
    left: 15px;
    right: 65px;
}
body xm-select > .xm-label .scroll .label-content{
    padding: 9px 10px;
}
body xm-select .xm-label .xm-label-block{
    align-items: center;
    background-color: #0090ba !important;
}
body xm-select > .xm-body{
    padding-left: 15px;
}
body xm-select > .xm-body .xm-toolbar .toolbar-tag span{
    text-transform: capitalize;
    font-size: 16px;
}
body xm-select .xm-body .xm-option.selected .xm-option-icon{
    color: #0090ba !important;
}
@media only screen and (max-width: 991px){
    body xm-select *{
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .Club-Search-Page .Club-Search-Box .Search-Main .search-item{
        margin-bottom: 10px;
    }
    body xm-select{
        min-height: 40px;
        line-height: 28px;
    }

    body xm-select *{
        font-size: 16px;
    }

    body xm-select > .xm-tips{
        font-size: 16px;
        left: 0;
    }
    body xm-select > .xm-label.single-row{
        left: 0;
        right: 40px;
    }

    body xm-select .xm-label .scroll .label-content{
        padding: 3px 10px;
        line-height: 28px;
    }
    
    body xm-select > .xm-icon{
        width: 40px;
        height: 36px;
        font-size: 16px;
    }

    body xm-select > .xm-body{
        padding-left: 0;
    }


}




/* 
 *
 *打印CSS 
 *
*/

/* 加载打印动画 */
.Club-Search-Page::before,
.Club-Search-Page::after{
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;
    opacity: 0;
    pointer-events: none;

    transition: opacity ease-in-out 300ms;
    -webkit-transition: opacity ease-in-out 300ms;
}
.Club-Search-Page::before{
    background-color: rgba(255, 255, 255, 0.7);
}
.Club-Search-Page::after{
    background-image: url("../images/ajax-loader.gif");
    background-position: center;
    background-repeat: no-repeat;
}
.Club-Search-Page[data-loading="true"]::before,
.Club-Search-Page[data-loading="true"]::after{
    opacity: 1;
    pointer-events: all;
    z-index: 9999;
}

/* 打印区域代码 */
.Search-Print-Box{
    position: relative;
    text-align: right;
    margin-bottom: -25px;
}
.Search-Print-Box .print-content{
    display: none;
    text-align: left;
}
.Search-Print-Box .print-content .print-logo{
    max-width: 25%;
    margin-bottom: 10px;
}
.Search-Print-Box .print-content .print-logo img{
    max-width: 100%;
}
.Search-Print-Box .print-content .print-title{
    position: relative;
    margin: 0;
    padding: 0;
    color: #232c64;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}
.Search-Print-Box .print-btn{
    position: relative;
    display: inline-flex;
    align-items: center;

    color: #0090ba;
    background-color: transparent;
    border: none;
    outline: none;

    visibility: hidden;
    opacity: 0;

    transition: opacity ease-in-out 300ms;
    -webkit-transition: opacity ease-in-out 300ms;
}
.Search-Print-Box .print-btn[data-active="true"]{
    visibility: visible;
    opacity: 1;
}
.Search-Print-Box .print-btn > svg {
    margin-right: 5px;
    color: #243b7a;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
}
.Search-Print-Box .print-btn:hover{
    color: #243b7a;
}


@media print{  
    .Page-title,
    .Club-Search-Box,
    .Search-Print-Box .print-btn,
    .Club-Search-Page .Search-Result-Box .Result-footer > .load-btn{
        display: none;
    }
    .Search-Print-Box .print-content{
        display: block;
    }

    .Club-Search-Page::before,
    .Club-Search-Page::after{
        content: none;
    }

    .Club-Search-Page .Search-Result-Box .Result-header .item:nth-child(6),
    .Club-Search-Page .Search-Result-Box .Result-body .Result-main > .day .c > div:nth-child(6){
        display: none;
    }
}