.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
}

.banner>img {
    width: 100%;
    height: 485px;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 90%;
}

.text-overlay h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.news-container {
    display: block;
    margin: 0 auto;
}

.header {
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    color: #4C4C4C;
    margin-bottom: 10px;
}

.header p {
    font-size: 14px;
    color: rgba(76, 76, 76, 0.6);
    line-height: normal;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.tab {
    background-color: transparent;
    padding: 16px 56px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: #F9D000;
    border: 1px solid #F9D000;
    box-shadow: 0 22px 29px 0 rgba(68, 165, 51, 0.1);
    text-decoration: none;
    border-right: 0;
}

.tab:first-child {
    border-radius: 10px 0 0 10px;
}

.tab:last-child {
    border-radius: 0 10px 10px 0;
    border-right: 1px solid #F9D000;
}

.tab:hover:not(.active), .tab.active {
    background-color: #F9D000;
    color: #fff;
}

.hotel-card {
    display: flex;
    align-items: center;
    background-color: #F6F6F9;
    padding: 25px 35px;
    box-sizing: border-box;
    margin: 50px 0;
    border-radius: 5px;
}

.hotel-card:nth-child(even) {
    flex-direction: row-reverse;
}

.hotel-image {
    width: 538px;
    height: 297px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 25px;
}

.hotel-card:nth-child(even) .hotel-image {
    margin-right: 0;
    margin-left: 25px;
}

.hotel-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-details {
    flex: 1;
}

.hotel-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.hotel-title {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    color: #606369;
    margin: 0;
}

.hotel-button {
    padding: 8px 16px;
    background-color: #ffcc00;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    color: #F6F6F9;
    position: relative;
}

.hotel-button:hover {
    background-color: #ffc200;
}

.hotel-description {
    font-size: 16px;
    line-height: 32px;
    color: #808082;
    margin: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qr-code {
    width: 163px;
    height: auto;
    border-radius: 5px;
    background: #FFFFFF;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-top: 15px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-code > img {
    width: 143px;
    height: 143px;
    display: block;
}

.qr-code > p {
    font-size: 14px;
    color: #3D3D3D;
    margin: 4px 0 0;
    line-height: normal;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF;
}

.hotel-button:hover .qr-code {
    opacity: 1;
    visibility: visible;
}