:root {
    --bg-sky: #f8fcfd;
	--sub-border-radius10: 10px; 
	--sub-border-radius20: 20px; 
	--sub-border-radius30: 30px; 
}
@media (max-width:768px){
    :root {
    	--sub-border-radius10: 5px; 
        --sub-border-radius20: 10px;
	    --sub-border-radius30: 15px; 
    }
}
/* subTabs */
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f3f3;
    padding: 10px;
    border-radius: 100px;
    text-align: center;
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: #666;
    font-size: 18px;
    padding: 12px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background: #14aeed;
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con {
        flex-wrap: wrap;
        background-color: transparent;
        padding: 0;
        gap: 4px;
    }
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 20px;
        width: auto;
        flex-basis: unset;
        flex-grow: unset;
        background-color: #e7e4dc;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 15px;
    }
}

/* company1 */
#company1 .sec1 {
    background: url(../img/com1_bg1.png) left bottom no-repeat;
    background-color: #f8f8f8;
}
#company1 .sec1 .fbox {
    background-color: #fff;
    border-radius: var(--sub-border-radius30);
    overflow: hidden;
}
#company1 .sec1 .fbox .lft {
    padding: 50px;
}
#company1 .sec1 .fbox .rt iframe {
    height: 500px;
}
@media (max-width:768px){
    #company1 .sec1 .fbox .lft {
        padding: 30px 20px;
    }
    #company1 .sec1 .fbox > div {
        width: 100%;
    }
    #company1 .sec1 .fbox .rt iframe {
        height: 250px;
    }
}

/* company1 .sec2 */
@media (max-width:768px){
    #company1 .sec2 .fbox > div {
        width: 100%;
        text-align: center;
    }
}
/* iconItems */
.iconItems .iconItem {
    padding: 30px 40px;
    border-radius: var(--sub-border-radius20);
    border: 1px solid #ddd;
    min-height: 260px;
}
.iconItems .iconItem .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.iconItems .iconItem .top .ic {
    display: inline-block;
    background-color: #ebf9ff;
    border-radius: 20px;
}
@media (max-width:768px){
    .iconItems .iconItem {
        padding: 30px 20px;
        min-height: auto;
    }
    .iconItems .iconItem .top {
        margin-bottom: 10px;
    }
    .iconItems .iconItem .top .ic {
        border-radius: 5px;
    }
    .iconItems .iconItem .top .ic img {
        width: 40px;
    }
}

/* subTitle */
.subTitle {
    padding-left: 20px;
    position: relative;
}
.subTitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    background-color: #14aeed;
}
.subTitle .hd {
    display: inline-block;
    line-height: 1em;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #f0f6f8;
    color: #14aeed;
}

/* loc_enob */
.loc_enob {
    border-top: 1px solid #ddd;
}
.loc_enob li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 40px 15px;
}
.loc_enob li .txt {
    width: 70%;
    padding-right: 30px;
}
.loc_enob li .img {
    width: 30%;
    text-align: center;
}


#company1 .sec4 {
    background: url(../img/com1_bg4.jpg) left bottom no-repeat;
}
#company1 .sec4 .stit {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
#company1 .sec4 .stit .tt .lg {
    font-size: 1.4em;
}
#company1 .sec4 .stit .sf_ic {
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    color: #fff;
    background-color: rgba(18, 154, 210, 0.9);
    border: 2px solid #14aeed;
    border-radius: 100px 100px 5px 100px;
    font-size: 40px;
    box-shadow: 6px 15px 40px rgba(18, 154, 210, 0.4);
}
#company1 .sec4 .op {
    opacity: .65;
}

/* company2 */
#company2 .sec1 {
    background: url(../img/com2_bg1.png) right top no-repeat;
}
#company2 .sec1 .sign {
    gap: 20px;
}
@media (max-width:768px){
    #company2 .sec1 .fbox > div {
        width: 100%;
    }
    #company2 .sec1 .fbox .lft {
        order: 2;
    }
    #company2 .sec1 .fbox .rt {
        border: 1px solid #eee;
        order: 1;
        padding: 20px 30px 0 40px;
        border-radius: 20px;
    }
}


/* gall_board */
#gall_board a {
    display: block;
    text-decoration: none;;
}
#gall_board a .img {
    overflow: hidden;
}
#gall_board a .img img {
    transition: 1.5s;
}
#gall_board a:hover .img img {
    transform: scale(1.1);
}
#gall_board a .txt {
    margin-top: 20px;
    height: 170px;
}
#gall_board a .txt .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#gall_board a .txt .top .cate {
    display: inline-block;
    line-height: 1em;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #f0f6f8;
    color: #14aeed;
}
@media (max-width:768px){
    #gall_board a .txt .dft {
        word-break: break-all;
    }
    #gall_board a .vdo iframe {
        height: 250px;
    }
}

/* gall_musician */
#gall_musician .ms_item {
    display: block;
    text-decoration: none;
    text-align: center;
}
#gall_musician .ms_item .img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}
#gall_musician .ms_item .img .more {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 175, 237, 0.4);
    color: #fff;
    font-weight: 100;
    font-size: 80px;
    opacity: 0;
    transition: .3s;
    z-index: 5;
}
#gall_musician .ms_item:hover .img .more {
    opacity: 1;
}
#gall_musician a.ms_item .img img {
    transition: 1.5s;
}
#gall_musician a.ms_item:hover .img img {
    transform: scale(1.1);
}
#gall_musician .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width:1200px){
    #gall_musician > li {
        width: 20%;
    }
}
@media (max-width:992px){
    #gall_musician > li {
        width: 25%;
    }
}
@media (max-width:768px){
    #gall_musician > li {
        width: 33.33333%;
    }
    #gall_musician .img {
        width: 23vw;
        height: 23vw;
    }
}
@media (max-width:500px){
    #gall_musician > li {
        width: 50%;
    }
    #gall_musician .img {
        max-width: 100%;
        height: auto;
    }
}

@media (min-width:1200px){
    #gall_musician.col8 > li {
        width: 12.5%;
    }
}


/* dvdHr */
.dvdHr {
    width: 100%;
    height: 1px;
    background-color: rgba(150, 150, 150, 0.4);
    margin: 8rem 0;
}
.dvdHr.big {
    margin: 13rem 0;
}
@media (max-width:768px) {
    .dvdHr {
        margin: 4rem 0;
    }
    .dvdHr.big {
        margin: 6rem 0;
    }
}

/* company5 */
#company5 .logoBox {
    border: 1px solid #eee;
}

/* conSec */
.conSec > div {
    padding: 60px 0;
}
@media (min-width:768px){
    .conSec {
        display: flex;
        align-items: flex-start;
    }
    .conSec > .conTit {
        width: 200px;
        border-top: 1px solid #14aeed;
    }
    .conSec > .conCon {
        width: calc(100% - 200px);
        padding-left: 30px;
        border-top: 1px solid #ddd;
    }
}
@media (max-width:768px){
    .conSec > .conTit {
        padding-top: 40px;
        border-top: 1px solid #ddd;
        padding-bottom: 0px;
    }
    .conSec > .conCon {
        padding-top: 20px;
    }
}

/* imgListItems */
.imgListItems,
.imgListItems .row {
    margin: 0 -10px;
}
.imgListItems > [class*="col-"],
.imgListItems [class*="col-"] {
    padding: 10px;
}
.imgListItems .img {
    position: relative;
    text-align: center;
    border-radius: var(--sub-border-radius20);
    overflow: hidden;
}
.imgListItems .img.bg {
    padding: 15px;
}
.imgListItems .img.bg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.01);
}
.imgListItems .img img {
    width: 100%;
}

/* concert1 */
#concert1 .sec1 .itemBoxs .item {
    border: 1px solid #ddd;
    padding: 50px 20px;
    border-radius: var(--sub-border-radius20);
}
@media (max-width:768px){
    #concert1 .sec1 .itemBoxs .item {
        padding: 30px 10px;
    }
    #concert1 .sec1 .itemBoxs .item img {
        max-width: 20vw;
    }
}

/* funcList */
.funcList .dft {
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    background-color: #f2fbff;
}
.funcList .dft i {
    color: #fff !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    font-size: .8em;
    background-color: rgba(18, 154, 210, 0.9);
    border: 2px solid #14aeed;
    border-radius: 40px 40px 2px 40px;
    box-shadow: 3px 9px 20px rgba(18, 154, 210, 0.4);
}
.funcList .dft > span {
    width: calc(100% - 31px);
    padding-left: 15px;
}


/* concertTit */
.concertTit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #14aeed;
    background-color: #fff;
    padding: 15px 30px;
    gap: 20px;
}
.concertTit .logo img {
    width: 130px;
    mix-blend-mode: darken;
}


/* detailsBoxs */
.detailsBoxs {
    background-color: #fdf9f6;
    border-radius: var(--sub-border-radius10);
    padding: 20px;
    border: 1px dashed #e7cbb6;
}
@media (max-width:768px){
    .detailsBoxs .vdo iframe {
        height: 250px !important;
        margin-top: 15px;
    }
}


/* yyList */
.yyList {
    margin: 0 -10px;
}
.yyList > [class*="col-"] {
    padding: 10px;
}
.yyList .cntItem {
    border: 2px solid #eee;
    padding: 25px 25px;
    border-radius: var(--sub-border-radius20);
}
.yyList .cntItem .cnt {
    text-align: right;
}
@media (max-width:768px){
    .yyList {
        margin: 0 -5px;
    }
    .yyList > [class*="col-"] {
        padding: 5px;
    }
    .yyList .cntItem {
        padding: 20px 15px;
    }
}

/* hisBox */
.hisBoxWrp {
    position: relative;
}
.hisBoxWrp .line {
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #ddd;
}
.hisBox {
    position: relative;
}
.hisBox > li {
    margin-top: 60px;
}
.hisBox .hidItem > div {
    padding-left: 80px;
}
.hisBox .hidItem .top {
    position: relative;
}
.hisBox .hidItem .top .dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #666;
}
.hisBox .hidItem .top .dot::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 60px;
    height: 1px;;
    background-color: rgba(102, 102, 102, 0.2);
}
.hisBox .hidItem .top .dot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(5);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(102, 102, 102, 0.1);
}
.hisBox .hidItem .hisCon {
    display: flex;
    position: relative;
}
.hisBox .hidItem .hisCon img {
    border-radius: var(--sub-border-radius20);
}
.hisBox .hidItem .hisCon .cc {
    padding: 25px;
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.hisBox .hidItem .hisCon .cc .ic {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: #fff;
    background-color: rgba(55, 55, 55, 0.9);
    border: 2px solid #666;
    border-radius: 40px 40px 2px 40px;
    box-shadow: 3px 9px 20px rgba(20, 20, 20, 0.3);

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.hisBox .hidItem .hisCon .cc .ic .dft {
    line-height: 1em !important;
    padding-top: 30px;
}
.hisBox .hidItem .hisCon .cc .bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hisBox .hidItem .hisCon .cc .txtCon .dft,
.hisBox .hidItem .hisCon .cc .bt .loc {
    color: #6f7c7f !important;
}
@media (max-width:992px){
    .hisBoxWrp .line {
        left: 0px;
    }
    .hisBox .hidItem .hisCon {
        width: 100%;
    }
}
@media (max-width:768px){
    .hisBox .hidItem > div {
        padding-left: 40px;
    }
    .hisBox .hidItem .top .dot::before {
        width: 30px;
    }
}
@media (max-width:768px){
    .hisBox .hidItem .hisCon .cc .ic {
        width: 35px;
        height: 35px;
    }
    .hisBox .hidItem .hisCon .cc .ic .dft {
        padding-top: 20px;
    }
}


.rvThumSlick .slick-arrow {
    color: transparent;
    background: url(../img/arrow-right-line.svg) center center no-repeat;
    background-size: 20px;
    background-color: #fff;
    z-index: 10;
    width: 50px;
    height: 50px;
}
.rvThumSlick.slick-slider .slick-arrow {
    transform: translate3d(100%, -50%, 0) rotate(180deg);
    box-shadow: 8px 8px 10px rgba(0,0,0,0.05);
}
.rvThumSlick.slick-slider .slick-prev {
    right: 98%;
}
.rvThumSlick.slick-slider .slick-next {
    left: 98%;
    transform: translate3d(-100%, -50%, 0);
}


#gall_perform a {
    text-decoration: none;
    display: block;
    padding: 30px;
    border: 1px solid #ddd;
    transition: .3s;
}
#gall_perform a:hover {
    border-color: #14aeed;
}
#gall_perform a .txt .cate {
    display: inline-block;
    line-height: 1em;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #f0f6f8;
    color: #14aeed;
}

#gall_perform a .img {
    position: relative;
}
#gall_perform a .img .num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 10px;
    width: 150px;
    height: 40px;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    z-index: 5;
    gap: 5px;
    
    background-color: rgba(33, 33, 33, 0.9);
    border: 2px solid rgba(66, 66, 66, 1);
    box-shadow: 8px 8px 20px rgba(73, 73, 73, 0.1);
    transition: .3s;
}
#gall_perform a:hover .img .num {
    background-color: rgba(18, 154, 210, 0.9);
    border-color: #14aeed;
    box-shadow: 8px 8px 20px rgba(18, 154, 210, 0.4);
}

/* donation1 */
#donation1 .number {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: #14aeed;
    color: #fff;
    font-size: .8em;
    vertical-align: middle;
}

/* infoBox */
.infoBox {
    padding: 30px;
    border-radius: var(--sub-border-radius10);
    background-color: #f6fbff;
    border: 1px dashed #a6cbda;
}
.infoBox .tt {
    display: inline-block;
    line-height: 1em;
    padding: 5px 20px;
    border-radius: 50px;
    background-color: #14aeed;
    color: #fff;
}

/* cntBox */
.cntBox .cntItem {
    border: 1px solid #ddd;
    text-align: center;
    padding: 35px 20px;
    border-radius: var(--sub-border-radius10);
}
.cntBox .cntItem img {
    width: 200px;
}
/* donation1 */
.donation .cont {
    display: flex;
    align-items: center;
    gap: 15px;
}
.donation .cont .ic {
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: .8em;
    color: #fff;
    background-color: rgba(18, 154, 210, 0.9);
    border: 2px solid #14aeed;
    border-radius: 40px 40px 2px 40px;
    box-shadow: 3px 9px 20px rgba(18, 154, 210, 0.4);
}

/* pList */
.pList > li {
    position: relative;
    padding-left: 15px;
}
.pList > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 13px ;
    width: 3px;
    height: 3px;
    background-color: #06afac;
}
.pList > li p {
    font-weight: 400;
}
@media (max-width:768px){
    .pList > li:after {
        top: 8px ;
    }
}


/*table_basic*/
.table.table_basic {
    border-top: 1px solid #454f5d;
}
.table.table_basic.table_fx {
    table-layout: fixed;
}
.table.table_basic thead tr th,
.table.table_basic thead tr td,
.table.table_basic tbody tr th,
.table.table_basic tbody tr td {
    font-size: 18px;
    color: #221814;
    line-height: 1.3em;
    text-transform: none;
    border: 1px solid #ddd;
    padding: 18px 15px;
}
.table.table_basic2 thead tr th,
.table.table_basic2 thead tr td {
    font-size: 16px;
    padding: 5px;
}
.table.table_basic2 tbody tr th,
.table.table_basic2 tbody tr td {
    font-size: 15px;
    padding: 5px;
}
/* .table.table_basic thead tr th:first-child,
.table.table_basic thead tr td:first-child,
.table.table_basic tbody tr th:first-child,
.table.table_basic tbody tr td:first-child {
    border-left: 0px;
}
.table.table_basic thead tr th:last-child,
.table.table_basic thead tr td:last-child,
.table.table_basic tbody tr th:last-child,
.table.table_basic tbody tr td:last-child {
    border-right: 0px;
} */
.table.table_basic thead tr th {
    font-weight: 600;
}
.table.table_basic tbody tr th {
    font-weight: 500;
}
.table.table_basic tbody tr td {
    font-weight: 400;
}
.table.table_basic.table_center thead tr th,
.table.table_basic.table_center thead tr td,
.table.table_basic.table_center tbody tr th,
.table.table_basic.table_center tbody tr td {
    text-align: center;
}
.table.table_basic.th_center thead tr th,
.table.table_basic.th_center tbody tr th {
    text-align: center;
    word-break: keep-all;
}
.table.table_basic.table_vh thead tr th,
.table.table_basic.table_vh thead tr td,
.table.table_basic.table_vh tbody tr th,
.table.table_basic.table_vh tbody tr td {
    vertical-align: middle;
}
.table.table_basic.th_vh thead tr th,
.table.table_basic.th_vh tbody tr th {
    vertical-align: middle;
}
.table.table_basic.table_wb thead tr th,
.table.table_basic.table_wb tbody tr td,
.table.table_basic.table_wb tbody tr th {
    word-break: keep-all;
}
.table.table_basic tbody tr th {
    /* background-color: #fcfcfc; */
}
.table.table_basic thead tr th {
    background-color: #000;
    border-top: 1px solid #454f5d;
    color: #fff;
}
.table.table_basic tbody tr.imp th,
.table.table_basic tbody tr.imp td {
    background-color: #fdfffb;
}
.table.table_basic tbody tr.imp td {
    color: #082c44;
    font-weight: 600;
}
.table.table_basic tbody tr td.text-left {
    text-align: left;
}
.table.table_basic tbody tr td.text-right {
    text-align: right;
}
.table.table_basic tbody tr td.imp {
    background-color: #fffef4;
}
@media (max-width:992px){
    .table_wrp {
        width: 100%;
        overflow-x: scroll;
    }
    .table_wrp .table.table_basic {
        width: 700px;
    }
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 992));
        padding: calc(100vw * (14 / 992));
    }
}
@media (max-width:768px){
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 768));
        padding: calc(100vw * (14 / 768));
		word-break: break-all !important;
    }
}
@media (max-width:500px){
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 500));
        padding: calc(100vw * (10 / 500));
    }
}
