*{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

 header {
    width: 100%;
    background: linear-gradient(to bottom, #e3e6ea, #e3e6ea);
    padding: 10px 0;
}
.top{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo {
    width: 50%;
    text-align: left;
}
.lore {
    width: 50%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.lore a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 14px 12px;
    border-radius: 5px;
    text-align: center;
    flex: 0 1 auto;
    transition: background-color 0.3s ease;
    width: 100px;
}
.login {
    background-color: #008175;
}
.Register {
    background-color: #d30000;
}
.login:hover{
    background-color: #005f54;
}
.Register:hover{
    background-color: #a00000;
}



.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    gap: 20px;
    
}

.content {
    flex: 1;
    max-width: 50%;
    box-sizing: border-box;
}

.shot h1 {
    color: #d30000;
    font-size: 42px;
    margin-bottom: 10px;
}

.shot h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.shot p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.button-row {
    margin: 20px 0;
}
.icon-wrap {
    width: 44px;
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.svg-icon {
    width: 24px;  
    height: 24px; 
    fill: #333; 
}
.svg-icon {
    width: 24px;
    height: 24px;
    color: #676c82;
}
.main-button {
    background-color: #d30000;
    color: white;
    padding: 10px 20px;
    font-size: 22px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: background-color 0.3s, transform 0.3s;
    padding: 10px 20px 10px 20px;
}

.main-button:hover {
    background-color: #a00000;
}

.button-arrow {
    font-size: 16px;
    background-color: white;
    color: #d30000;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.main-button:hover .button-arrow {
    transform: translateX(5px);
}

.verify-link {
    margin-left: 20px;
    color: #0056b3;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

.verify-link:hover {
    text-decoration: underline;
}

.mirror-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.paly-now{
    background: rgba(0, 0, 0, 0.1);
    color: white;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 5px;
}
.main-button:hover .paly-now{
    background: rgba(0, 0, 0, 0.4);

}
.link-paly-now{
    background: none;
    color: #9E9E9E;
    padding: 8px 12px 8px 0px;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}
.speed-item{
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}
/* .speed-item:hover{
    background-color: #e3e6ea;
} */
.fas, .mirror-item {
    display: inline-block;
    vertical-align: middle;
}
.mirror-item {
    background-color: white;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s, transform 0.3s;
}


/* 鼠标悬停时 */
.speed-item:hover .mirror-item,
.speed-item:hover .link-paly-now {
  background-color: #e3e6ea;
  color: #000;
}



.image-section {
    max-width: 50%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
.sfds{
    height: 500px;
    width: 100%;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
    padding: 16px 0;
}

.carousel-images img {
    width: 100%;
    height: 230px;
    border-radius: 5px;
}

.carousel-item {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 1);
}





.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.item-image {
    flex: 0 0 10%;
    max-width: 10%;
    margin-right: 10px;
}

.item-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.item-text {
    flex: 1;
}

.item-text h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #000;
}

.item-text p {
    font-size: 18px;
    color: #666;
}
.mirror-item i {
    display: inline-block;
}
.fa-solid, .fas {
    color: #9E9E9E;
    background-color: #e3e6ea;
    padding: 15px 13px;
    float: left;
    font-size: 18px;
    border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .mirror-item i {
        display: inline-block;
    }
    .mirror-item {
        padding-left: 10px;
    }
}

footer {
    background: linear-gradient(to bottom, #e3e6ea, #e3e6ea);
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #676c82; 
    font-size: 14px; 
    position: fixed;
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 999; 
}
.foot p {
    margin: 0; 
}
a {
    text-decoration: none;
    color: #676c82;
}

@media screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    .image-section {
        order: 1;
        flex: 0 1 auto;
    }
    .content {
        order: 2; 
        flex: 1; 
    }
    .grid-container {
        order: 3; 
        flex: 0 1 auto;
    } 
    .carousel-item {
        padding: 10px;
    }
    .carousel-images img {

        height: 119px;
    }
    .content{
        max-width: 100%;
        padding: 10px;
    }
    .image-section {
        max-width: 100%;
    }
    .fa-solid, .fas {
        padding: 15px 10px;
    }
    .lore{display: none;}
    .logo {
        width: 100%;
        text-align: left;
        text-align: center;
    }
    .button-row {
        display: flex;
        justify-content: center;  
        align-items: center;      
    }
    
    .main-button {
        display: flex;
        align-items: center;      
    }
    .button-row {
        justify-content: center;  
    }
    .shot{
        text-align: center;
    }
    .carousel-images {
        display: flex;
        transition: transform 0.5s ease;
        padding: 0px 0;
    }
    .link-paly-now{
        display: none;
    }
}