body {
    background: #FFFFFF;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner .banner-title {
    position: absolute;
    font-size: 36px;
    font-weight: 400;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 1);
    left: 10%;
}

.main-container-wrap {
    background: #FFFFFF;
}

.main-container .tabs {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid rgba(201, 201, 201, 1);
    padding: 0 20px;
}

.main-container .tabs .tab {
    font-size: 17px;
    font-weight: 400;
    color: rgba(56, 56, 56, 1);
    margin-right: 70px;
    cursor: pointer;
    position: relative;
}

.main-container .tabs .tab:last-child {
    margin-right: 0;
}

.main-container .tabs .tab.active {
    font-weight: 700;
}

.main-container .tabs .tab:hover {
    font-weight: 700;
}

.main-container .tabs .tab::after {
    display: none;
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: rgba(1, 159, 232, 1);
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
}

.main-container .tabs .tab.active::after {
    display: block;
}

.tab-contents {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.tab-contents .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    pointer-events: none;
    box-sizing: border-box;
    margin-top: 25px;
    margin-bottom: 50px;
}

.tab-contents .content.active {
    position: relative;
    display: block;
    pointer-events: auto;
}

.content .content-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.content .content-list .content-item {
    width: calc(25% - 16px);
    margin-top: 25px;
    flex-shrink: 0;
    margin-right: 16px;
}

.content .content-list .content-item img {
    width: 100%;
    height: 244px;
    margin-bottom: 17px;
    transform: scale(1);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.content .content-list .content-item img:hover {
        transform: scale(1.2);
}
.content .content-list .content-item .item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 33px;
    color: rgba(56, 56, 56, 1);
    text-align: center;
}

.content .qustion-content .tag-list {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.content .qustion-content .tag-list .tag {
    width: 230px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 0.5px solid rgba(217, 217, 217, 1);
    margin-right: 14px;
    font-size: 17px;
    color: rgba(85, 85, 85, 1);
    border-radius: 5px;
    cursor: pointer;
}

.content .qustion-content .tag-list .tag.active {
    border: 0.5px solid rgba(0, 162, 233, 1);
    background: rgba(0, 162, 233, 1);
    color: #FFFFFF;
}

.content .qustion-content .qustion-list {
    display: none;
}

.content .qustion-content .qustion-list.active {
    display: block;
}

.content .qustion-content .qustion-list .qustion-item {
    padding: 18px 25px;
    position: relative;
    border: 0.5px solid transparent;
}

.content .qustion-content .qustion-list .qustion-item .handler {
    position: absolute;
    right: 24px;
    top: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    text-align: center;
    line-height: 18px;
    color: rgba(196, 196, 196, 1);
    font-size: 30px;
}

.content .qustion-content .qustion-list .qustion-item.active {
    border: 0.5px solid rgba(209, 209, 209, 1);
}

.content .qustion-content .qustion-list .qustion-item.active .qustion-box {
    border-bottom: 0.5px solid rgba(0, 162, 233, 1);
}

.content .qustion-content .qustion-list .qustion-item.active .answer-box {
    height: 20px;
}

.content .qustion-content .qustion-list .qustion-item .qustion-box {
    padding-bottom: 21px;
    border-bottom: 0.5px solid rgba(207, 207, 207, 1);
    cursor: pointer;
}

.content .qustion-content .qustion-list .qustion-item .answer-box {
    margin-top: 21px;
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

.content-nav {
    width: 100%;
}

.content-nav .nav-link {
    width: 230px;
    height: 70px;
    text-align: center;
    line-height: 55px;
    font-size: 17px;
    border: 0.5px solid rgba(217, 217, 217, 1);
    margin-right: 10px;
    color: rgba(85, 85, 85, 1);
}

.content-nav .active {
    background: rgba(0, 162, 233, 1) !important;
    color: rgba(255, 255, 255, 1);
}

.content .text {
    font-size: 18px;
    color: rgba(85, 85, 85, 1);
    margin-top: 44px;
    padding: 40px 50px;
    background: rgba(245, 247, 250, 1);
    display: none;
}

.content .text p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 30px;
}

.content .text.active {
    display: block;
}