@import url(root.css);

/* background */
.bg-gray {
    background-color: #fafafa;
}
.bg-mint {
    background-color: #f2f7f9;
}
/* subtop */
#subtop {
    height: 750px;
    position: relative;
    overflow: hidden;
    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
}
#subtop.smHeight {
    height: 550px;
}
#subtop .subtopBg {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;

    -webkit-animation: zoomOutInBg 1.8s ease-out 1;
    -moz-animation: zoomOutInBg 1.8s ease-in 1;
    -ms-animation: zoomOutInBg 1.8s ease-in 1;
    -o-animation: zoomOutInBg 1.8s ease-in 1;
    animation: zoomOutInBg 1.8s ease-in 1;
}
@keyframes zoomOutInBg {
    0% {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }  
}
#subtop .subtopTxt {
    position: relative;
    z-index: 8;
    padding-bottom: 7.5%;
}
#subtop .subTxt {
    opacity: .85;
}
@media (max-width:768px){
    #subtop.smHeight,
    #subtop {
        height: 40vh;
        min-height: 400px;
    }
}

/* subTabs */
#subTabs {
    padding: 30px 0;
}
#subTabs .tabWrps {
    position: relative;
}
#subTabs .tabWrps #lnbMn {
    display: flex;
    align-items: center;
    justify-content: center;
}
#subTabs .tabWrps #lnbMn li a {
    display: block;
    text-decoration: none;
    color: #999;
    font-size: 17px;
    line-height: 1.3em;
    font-weight: 500;
    padding-bottom: 5px;
}
@media (min-width:992px) {
    #subTabs .tabWrps #lnbMn {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0,0,0,0.05);
        padding: 10px;
        border-radius: 100px;
        text-align: center;
    }
    #subTabs .tabWrps #lnbMn li {
        display: block;
        flex-grow: 1;
        flex-basis: 50%;
        color: rgba(10,10,10,.5);
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        position: relative;
    }
    #subTabs .tabWrps #lnbMn li a {
        padding: 18px 20px;
    }
    #subTabs .tabWrps #lnbMn li.act a {
        color: rgba(255, 255, 255, 1);
        background-color: var(--main-color);
        border-radius: 100px;
    }
}
@media (max-width:992px) {
    #subTabs .tabWrps #lnbMn {
        position: absolute;
        left: 0;
        top: calc(100% - 1px);
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        border-top: 0px;
        display: none;
        max-height: 200px;
        overflow-y: auto;        
        border: 1px solid #ddd;
        background-color: #fff;
        z-index: 20;
        text-align: center;
    }
    #subTabs .tabWrps #lnbMn.act {
        display: block;
    }
    #subTabs .tabWrps #lnbMn li a {
        padding: 15px;
        font-size: 15px;
        border: 0px;
        width: 100%;
    }
    #subTabs .tabWrps #lnbMn li.act a {
        color: var(--main-color);
        background-color: #fff2f8;
    }
    #subTabs .tabWrps #cateName {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: 1px solid #ddd;
        cursor: pointer;
    }
}

/* subTitleDot */
.subTitleDot {
    padding-left: 35px;
    position: relative;
}
.subTitleDot .dot {
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 7px solid var(--main-color);
    transform: translateY(-60%);
}
@media (max-width:768px) {
    .subTitleDot {
        padding-left: 25px;
    }
    .subTitleDot .dot {
        width: 17px;
        height: 17px;
        border-width: 4px;
    }
}

/* iset */
.iset .item {
    background-color: #f9f8f8;
    padding: 40px;
}
.iset .item .icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #f8e7ef;
    margin-left: auto;
}
@media (max-width:768px) {
    .iset .item {
        background-color: #f9f8f8;
        padding: 30px;
        display: flex;
    }
    .iset .item .tcon {
        order: 1;
        width: calc(100% - 70px);
    }
    .iset .item .icon {
        order: 2;
        width: 70px;
    }
    .iset .item .icon i {
        width: 40px;
        height: 40px;
    }
}


/*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: #666;
    line-height: 1.3em;
    text-transform: none;
    border: 1px solid #ddd;
    padding: 18px 35px;
}
.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 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;
}
.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;
    font-weight: 600;
}
.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));
    }
}
@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));
    }
}
/* his_bt */
.his_bt {
    position: relative;
}
.his_bt .historyImgsWrpWrp {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 200px;
    width: 100%;
}
.his_bt .historyImgsWrpWrp > .pin-spacer {
    height: auto !important;
}
.his_bt .historyImgs {
    height: 460px;
    width: 100%;
    background: url(../img/his_top.jpg) center center no-repeat;
    background-size: cover;
}
@media (max-width:768px){
    .his_bt .historyImgsWrpWrp {
        top: 70px;
        z-index: 8;
        background-color: #fff;
        margin: -15px;
        padding: 15px;
        width: calc(100% + 30px);
    }
    .his_bt .historyImgs {
        height: 300px;
    }
}
@media (max-width:500px){
    .his_bt .historyImgs {
        height: 200px;
    }
}
/* historyBox */
.historyBoxWrp {
    position: relative;
    margin-left: auto;
    width: 50%;
    padding-top: 600px;
}
.historyBox {
    position: relative;
}
.historyBox .historyItem {
    position: relative;
    padding-left: 70px !important;
}
.historyBox .historyProgress {
    position: absolute;
    left: 35px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    transform: translateX(-50%);
}
.historyBox .historyProgress .crrt{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background-color: var(--main-color);
}
.historyBox .historyItem + .historyItem {
    margin-top: 120px;
}
.historyBox .historyItem .yy {
    position: relative;
}
.historyBox .historyItem .yy:after {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    border-radius: 50%;
}
.historyBox .historyItem .his {
    display: flex;
    margin-top: 30px;
}
.historyBox .historyItem .his + .his {
    margin-top: 10px;
}
.historyBox .historyItem .his .date {
    width: 100px;
    font-weight: 600;
}
.historyBox .historyItem .his .date_con {
    width: calc(100% - 100px);
}
.historyBox .historyItem .his .date_con .cc {
    display: block;
    padding-left: 14px;
    position: relative;
}
.historyBox .historyItem .his .date_con .cc + .cc {
    margin-top: 5px;
}
.historyBox .historyItem .his .date_con .cc:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background-color: #aaa;
    transform: translateY(-60%);
}
@media (max-width:768px){
    .historyBoxWrp {
        width: 100%;
        padding-top: 0;
    }
    .historyBox .historyItem {
        padding-left: 40px !important;
    }
    .historyBox .historyItem + .historyItem {
        margin-top: 60px;
    }
    .historyBox .historyProgress {
        position: absolute;
        left: 20px;
    }
    .historyBox .historyItem .yy:after {
        left: -20px;
        width: 7px;
        height: 7px;
    }
    .historyBox .historyItem .his .date {
        width: 80px;
    }
    .historyBox .historyItem .his .date_con {
        width: calc(100% - 80px);
    }
}
@media (max-width:500px){
    .historyBox .historyItem .his .date {
        width: 60px;
    }
    .historyBox .historyItem .his .date_con {
        width: calc(100% - 60px);
    }
}


/* orgBox */
.orgBox {
    background-color: #f7f7f7;
}
.orgBox .orgTop {
    position: relative;
    margin-bottom: 30px;
}
.orgBox .orgTop::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    height: 30px;
    border-right: 2px solid #777;
}
.orgBox .orgTop .orgTopLogo {
    max-width: 330px;
    border-radius: var(--sub-border-radius20);
    padding: 10px;
    margin: 0 auto;
}
.orgBox .orgTop .tt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 700;
    box-shadow: 2px 2px 15px rgba(0, 81, 70, 0.05);
    margin-left: auto;
    margin-right: auto;;
}
.orgBox .orgBt .dept1,
.orgBox .orgBt .dept2 {
    position: relative;
}
.orgBox .orgBt .dept1 > .tt {
    background-color: #27145f;
    color: #fff;
}
.orgBox .orgBt .dept2 > .tt {
    background-color: #27145f;
    color: #fff;
}
.orgBox .orgBt .dept1 .tItem {
    background-color: #fff;
    border: 1px solid #ddd;
    /* border-top: 0px; */
    margin-top: 10px;
}
.orgBox .orgBt .dept1 > .tt ,
.orgBox .orgBt .dept2 > .tt ,
.orgBox .orgBt .dept1 .tItem {
    padding: 15px;
    border-radius: 5px;
}
.orgBox .orgBt .dept2 {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
}
.orgBox .orgBt .dept2::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0%;
    height: 100%;
    border-right: 2px solid #777;
}
.orgBox .orgBt .dept2:last-child:after {
    height: calc(50% + 15px);
}
.orgBox .orgBt .dept2::before {
    content: "";
    position: absolute;
    left: 10px;
    top: calc(50% + 15px);
    width: 20px;
    height: 0;
    border-bottom: 2px solid #777;
}
@media (min-width:768px){
    .orgBox .orgBt {
        display: flex;
    }
    .orgBox .orgBt .dept1 {
        flex-basis: 33.33333%;
        padding: 0 15px;
        padding-top: 30px;
    }
    .orgBox .orgBt .dept1::before {
        content: "";
        position: absolute;
        left: 0%;
        top: 0;
        width: 100%;
        height: 0;
        border-top: 2px solid #777;
    }
    .orgBox .orgBt .dept1:first-child::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 50%;
        height: 0;
        border-top: 2px solid #777;
    }
    .orgBox .orgBt .dept1:last-child::before {
        content: "";
        position: absolute;
        right: 50%;
        top: 0;
        width: 50%;
        height: 0;
        border-top: 2px solid #777;
    }
    .orgBox .orgBt .dept1:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0%;
        height: 30px;
        border-right: 2px solid #777;
    }
}
@media (max-width:768px){
    .orgBox .orgTop {
        margin-bottom: 0px;
    }
    .orgBox .orgTop .tt {
        display: block;
        height: auto;
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 15px;
        border-radius: 3px;
    }
    .orgBox .orgBt .dept1 > .tt ,
    .orgBox .orgBt .dept2 > .tt ,
    .orgBox .orgBt .dept1 .tItem {
        padding: 10px;
        border-radius: 3px;
    }
    .orgBox .orgTop::after {
        left: 10px;
    }
    .orgBox .orgBt .dept1 {
        padding-left: 20px;
        padding-top: 30px;
    }
    .orgBox .orgBt .dept1::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 0%;
        height: 100%;
        border-right: 2px solid #777;
    }
    .orgBox .orgBt .dept1:last-child:after {
        height: 55px;
    }
    .orgBox .orgBt .dept1::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 54px;
        width: 10px;
        height: 0;
        border-bottom: 2px solid #777;
    }
}

/* company4 */
#company4 .sec1 {
    position: relative;
}
#company4 .sec1:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 70%;
    width: 100%;
    background: url(../img/mapBg.png) left top no-repeat;
    background-color: var(--main-color);
    border-radius: 0 0 100px 0;
    z-index: 0;
}
#company4 .sec1 .container {
    position: relative;
    z-index: 10;
}
#company4 .sec1 .btnItem {
    border-color: #fff !important;
}
@media (max-width:768px) {
    #company4 .sec1:after {
        height: 80%;
        border-radius: 0px;
    }
}
/* locTop */
@media (min-width:768px) {
    .locTop .lft {
        width: 40%;
    }
    .locTop .rt {
        width: 60%;
    }
}
@media (max-width:768px) {
    .locTop > div {
        width: 100%;
    }
    .locTop .lft {
        text-align: center;
    }
}
/* comInfo */
.comInfo {
    display: flex;
    align-items: center;
    padding: 30px 10px;
    border-top: 1px solid #ddd;
}
.comInfo:last-child {
    border-bottom: 1px solid #ddd;
}
.comInfo .tt {
    width: 100px;
    font-weight: 500;
}
.comInfo .cc {
    width: calc(100% - 100px);
    padding-left: 15px;
    font-weight: 700;
}
.comInfo .tt,
.comInfo .cc {
    color: #fff;
}
@media (max-width:768px) {
    .comInfo {
        flex-direction: column;
        padding: 20px 10px;
    }
    .comInfo .tt,
    .comInfo .cc {
        width: 100%;
        padding-left: 0;
    }
}

/* mapbox */
.mapbox .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 500px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* bsnAreaBox */
.bsnAreaBox {
    text-align: center;
}
.bsnAreaBox .bsnAreaItem {
    position: relative;
    padding: 0 20px;
}
.bsnAreaBox .bsnLogo {
    display: inline-block;
    padding: 50px 80px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 15px 15px 30px rgba(201, 141, 168, 0.15);
    margin-bottom: 50px;
    position: relative;
}
.bsnAreaBox .bsnLogo:after {
    content: "";
    position: absolute;
    top: 100%;
    width: 1px;
    right: 50%;
    height: 50px;
    background-color: #aaa;
}
.bsnAreaBox .bsnLogo img {
    width: 250px;
}
.bsnAreaBox .icon {
    padding-top: 50px;
    display: inline-block;
    margin-bottom: -20px;
    position: relative;
    z-index: 3;
}
.bsnAreaBox .icon:after {
    content: "";
    position: absolute;
    top: 0%;
    width: 1px;
    right: 50%;
    height: 50px;
    background-color: #aaa;
}
.bsnAreaBox .icon img {
    border: 8px solid var(--main-color);
    border-radius: 50%;
    background-color: #fff;
}
.bsnAreaBox .tcon {
    position: relative;
    z-index: 1;
}
.bsnAreaBox .tcon .tTit {
    border-radius: 20px 20px 0 0;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    line-height: 1.2em;
}
.bsnAreaBox .tcon .btTxt {
    border-radius: 0 0 20px 20px;
    border: 1px solid #ddd;
    border-top: 0px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    height: 300px;
    text-align: left;
}
.bsnAreaBox .tcon .btTxt > div {
    width: 100%;
}
@media (min-width:768px){
    .bsnAreaBox .bsnAreaItem:after {
        content: "";
        position: absolute;
        top: 0;
        width: 50%;
        left: 50%;
        height: 1px;
        background-color: #aaa;
    }
    .bsnAreaBox .bsnAreaItem::before {
        content: "";
        position: absolute;
        top: 0;
        width: 50%;
        right: 50%;
        height: 1px;
        background-color: #aaa;
    }
    .bsnAreaBox .row > div:first-child .bsnAreaItem:before,
    .bsnAreaBox .row > div:last-child .bsnAreaItem::after {
        display: none;
    }
}
@media (max-width:992px){
    .bsnAreaBox .row > div:nth-child(3) .bsnAreaItem:before,
    .bsnAreaBox .row > div:nth-child(4) .bsnAreaItem:before,
    .bsnAreaBox .row > div:nth-child(3) .bsnAreaItem::after,
    .bsnAreaBox .row > div:nth-child(2) .bsnAreaItem::after {
        display: none;
    }
}
@media (max-width:768px){
    .bsnAreaBox .bsnLogo {
        margin-bottom: 0;
        padding: 30px 40px;
        max-width: 60vw;
    }
    .bsnAreaBox .bsnLogo:after {
        display: none;
    }
    .bsnAreaBox .tcon .tTit {
        height: 55px;
    }
    .bsnAreaBox .tcon .btTxt {
        padding: 30px 15px;
        height: auto;
    }
    .bsnAreaBox .icon {
        padding-top: 20px;
        margin-bottom: -15px;
    }
    .bsnAreaBox .icon:after {
        height: 20px;
    }
    .bsnAreaBox .icon img {
        width: 75px;
        border-width: 4px;
    }
}
@media (max-width:500px){
    .bsnAreaBox .tcon .tTit {
        border-radius: 8px 8px 0 0;
    }
    .bsnAreaBox .tcon .btTxt {
        border-radius: 0 0 8px 8px;
        padding: 15px 15px;
    }
}


/* listDecos */
.listDecos > li {
    position: relative;
    /* background-color: #f7f7f7;
    border-radius: 5px; */
    padding: 20px 0;
}
.listDecos > li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
/* .listDecos > li + li {
    margin-top: 8px;
} */
.listDecos > li > .dcItem {
    position: relative;
    padding-left: 18px;
}
.listDecos > li > .dcItem:after {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 2px;
    height: 8px;
    background-color: var(--main-color);
    transform: translateY(calc(-50% + 2px)) rotate(-45deg);
}
.listDecos > li > .dcItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 2px;
    height: 8px;
    background-color: var(--main-color);
    transform:translateY(calc(50% - 2px)) rotate(45deg);
}
@media (max-width:768px){
    .listDecos > li {
        padding: 12px 0;
    }
    .listDecos > li > .dcItem::before,
    .listDecos > li > .dcItem:after {
        top: 7px;
        height: 6px;
    }
    .listDecos > li > .dcItem:after {
        transform: translateY(calc(-50% + 1px)) rotate(-45deg);
    }
    .listDecos > li > .dcItem::before {
        transform:translateY(calc(50% - 1px)) rotate(45deg);
    }
}
/* grayDetails */
.grayDetails {
    position: relative;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 40px 30px;
}
@media (max-width:768px){
    .grayDetails {
        padding: 25px 20px;
    }
}

/* pList */
.pList li {
    position: relative;
    padding-left: 15px;
}
.pList li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 3px;
    height: 3px;
    background-color: #aaa;
}
@media (max-width:768px){
    .pList li:after {
        top: 8px;
    }
}
/* dtailItems */
.dtailItems .item {
    display: flex;
    align-items: center;
}
.dtailItems .item > strong,
.dtailItems .item > span {
    display: inline-block;
}
.dtailItems .item > strong {
    font-size: .8em;
    padding: 0 15px;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.dtailItems .item > span {
    padding-left: 10px;
}

/* imgBorder */
.imgBorder {
    padding: 20px;
    border: 1px solid #ddd;
}
.imgBorder .imgBorderRadius {
    border-radius: 10px;
}
/* pdTit */
.pdTit {
    border: 3px solid #eee;
    padding: 40px  20px;
    text-align: center;
}
/* tCate */
.tCate span {
    display: inline-block;
    background-color: #fff2f7;
    padding: 5px 20px;
    border-radius: 50px;
}

/* subTitle */
.subTitle {
    display: block;
    padding-left: 14px;
    position: relative;
}
.subTitle + .cc {
    margin-top: 5px;
}
.subTitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background-color: #aaa;
    transform: translateY(-60%);
}
/* imgContent */
.imgContent .icon {
    border: 1px solid #ddd;
}
.imgContent .tcon {
    background-color: #f7f7f7;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0px;
}
/* product2 */
#product2 .bsnAreaBox .bsnLogo {
    background-color: #333;
    padding: 30px;
}
#product2 .bsnAreaBox .icon {
    margin-bottom: -2px;
}
#product2 .bsnAreaBox .tcon .btTxt {
    height: auto;
    min-height: 700px;
    padding: 30px;
    align-items: flex-start;
}
#product2 .bsnAreaBox .tcon .btTxt .prImg {
    text-align: center;
}
#product2 .bsnAreaBox .tcon .btTxt .prImg img {
    width: 300px;
}
#product2 .bsnAreaBox .bsnAreaItem:before,
#product2 .bsnAreaBox .bsnAreaItem:after,
#product2 .bsnAreaBox .icon::before,
#product2 .bsnAreaBox .icon:after {
    display: none;
}
@media (max-width:768px){
    #product2 .bsnAreaBox .tcon .btTxt {
        min-height: auto;
    }
}
/* equips */
.equips .eqItem {
    padding: 20px 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 250px;
}
.equips .eqItem .img {
    width: 150px;
}
.equips .eqItem .txt {
    width: calc(100% - 150px);
    padding-right: 15px;
}
@media (max-width:768px){
    .equips .eqItem {
        padding: 35px 20px;
        height: auto;
    }
    .equips .eqItem .img {
        width: 100px;
    }
    .equips .eqItem .txt {
        width: calc(100% - 100px);
        padding-right: 15px;
    }
}

/* orderList */
.orderList {
    border-top: 2px solid #333;
}
.orderList .item {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #ddd;
}
.orderList .item .num {
    width: 60px;
}
.orderList .item .con {
    width: calc(100% - 60px);
}
@media (max-width:768px) {
    .orderList .item {
        padding: 30px 10px;
    }
    .orderList .item .num {
        width: 40px;
    }
    .orderList .item .con {
        width: calc(100% - 40px);
    }
}
