
.phonetest{
    width: 100%;
    padding: 0 17.5rem;
    box-sizing: border-box;
    height: 4rem;
    line-height: 4rem;
    background-color: #fcc813;
    color: #000;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t1{
    display: flex;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
}
.incon{
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    margin-right: 1rem;
}
.t1_hover {
    position: relative;
}

.hoverimg,
.phoneHover,
.imh2 {
    position: absolute;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: none;
    top: 2rem;
    left: 2rem;
    width: 10rem;
    height: 10rem;
}



.imh2 {
    left: -12rem;
    top: -2rem;
}

.phoneHover {
    width: 16rem;
    height: 4rem;
    left: -18rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    color: #000;
}

.hoverimg img {
    width: 100%;
    height: 100%;
}

.t1_hover:hover .hoverimg,
.t1_hover:hover .phoneHover {
    display: block;
    /* 鼠标悬浮时显示 */
}
.incon img{
    width: 100%;
    height: 100%;
}
.msglist{
    width: 100%;
    height: 13.6rem;
    padding: 0 10%;
    box-sizing: border-box;
    font-size: 0.6rem;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
}
.arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #f1f4f7; /* 箭头颜色 */
    display: inline-block;
    vertical-align: middle;
  }
.ul_list{
    margin-right: 1rem;
    margin-top: 1rem;
    /* font-size: 0.6rem; */
    display: flex;
        flex-direction: column;
}
.toplist{
    display: flex;
}
.msg, .msg1{
    border-top: 1px solid #ffffff;
    margin-top: 2.6rem;
}
.msg1{
    padding-top: 1rem;
    display: flex;
}
.div_one{
    margin-right: 2rem;
    /* font-size: 0.6rem; */
}
.ul_span{
    margin-left: 1rem;
}
.ul_containe{
    margin-top: 1rem;
    margin-left: 1.7rem;
}
.imagecard{
    width: 5rem;
    height: 5rem;
    background-color: #f1f4f7;
}
.imagecard img {
    width: 100%;
    height: 100%;
}
.bottomlist{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid #ffffff;
    margin-top: 1rem  ;
    padding-top: 1rem;
}
.phone_num{
    margin-right: 2rem;
}


.navbar_top {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background-color: #fff;
    color: rgb(223, 223, 223);
    width: 5rem;
    height: 16.5rem;
    border-radius: 5rem;
    padding: 1.5rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 99;
    transform: scale(0.7);
  }
  .incon_div{
    /* width: 3.5rem;
        height: 3.5rem; */
    padding: 0.8rem;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    border-radius: 100%;
  }
  .incon_div img{
   width: 100%;
   height: 100%;
  }
  .navbar_top .incon_div:hover {
    background-color: #f5f5f5;
  } 
.new_bannerTitle {
    position: absolute;
    top: 40%;
    left: 10%;
    color: #f5f5f5;
}

.new_bannerTitle .big_title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.new_bannerTitle .small_title {
    font-size: 1.5rem;
}

.new_channel-banner {
    height: 690px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0;
    padding: 0;
}


 .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
    }
    
        .close,
        .closeForm {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    
    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
        .closeForm:hover,
        .closeForm:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }
    
    .popup-content {
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        width: 80%;
        max-width: 500px;
        transform: scale(0.8);
        animation: fadeIn 0.5s;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.6);
        }
    
        to {
            opacity: 1;
            transform: scale(0.8);
        }
    }
    
    .form-container {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 600px;
    }
    
    .form-title {
        font-size: 24px;
        color: #333;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    #contactForm label {
        display: block;
        margin-bottom: 8px;
        color: #666;
        font-size: 1rem;
    }
    
    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    select {
        appearance: none;
        background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 10px center;
        background-size: 16px;
    }
    
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-item {
        display: flex;
        align-items: center;
    }
    
    input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    textarea {
        height: 100px;
        resize: vertical;
    }
    
    .submit-btn {
        background: #007bff;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: 100%;
        font-size: 16px;
        transition: background 0.3s;
    }
    
    .submit-btn:hover {
        background: #0056b3;
    }
    
    ::placeholder {
        color: #999;
        opacity: 1;
}

.no-scroll {
    overflow: hidden;
}

.modal {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    /* 固定定位 */
    z-index: 99;
    /* 置于页面之上 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* 允许滚动 */
    background-color: rgb(0, 0, 0);
    /* 背景颜色 */
    background-color: rgba(0, 0, 0, 0.4);
    /* 背景颜色带透明度 */
}

/* 模态内容 */
.modal-content,
.home_modal-content {
    background-color: #1f1d1d;
    margin: 0 auto;
        margin-top: 4rem;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* 宽度可以根据需要调整 */
}

/* 关闭按钮 */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
 video.hide-progress::-webkit-media-controls {
    display: none !important;
}

video.hide-progress::-webkit-media-controls-enclosure {
    display: none !important;
}

input[type="radio"] {
    display: none;
}

.radio-container {
    display: flex;
    justify-content: space-around;
    /* 左右分布 */
    align-items: center;
    /* 垂直居中 */

}

.radio-item {
    display: flex;
    align-items: center;
    /* 垂直居中 */
}

input[type="radio"] {
    display: none;
    /* 隐藏单选按钮 */
}

input[type="radio"]:checked+label {
    text-decoration: underline;
    text-decoration-color: #fcc813;
    text-decoration-thickness: 6px;
}

label {
    cursor: pointer;
    /* 鼠标悬停时显示为可点击 */
}
.t-image {
    display: flex;
    margin-top: 10px;
}

.img-i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.img-i img {
    width: 100%;
    height: 100%;
}