@charset "utf-8";

.speedTest{
    width: 100%;
    height: 1080px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 100px;
    color: #FFFFFF;
    background: #87CEFA; /* 天蓝色备用背景 */
    background: url(/images/bg.jpg) no-repeat center center / auto 100%;
}

.logo{
    width: 375px;
    height: 106px;
    display: block;
    margin: 0 auto;
}

.speedTip{
    width: 827px;
    height: 72px;
    display: block;
    margin: 40px auto 0;
}

h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;
    display: block;
    margin: 10px 0;
}

/* 顶部客服按钮：天蓝渐变 + 半透明 */
.customer{
    width: 240px;
    height: 54px;
    background: linear-gradient(180deg, rgba(135, 206, 250, 0.9) 0%, rgba(30, 144, 255, 0.8) 100%);
    border-radius: 90px;
    margin: 10px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.customer img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contact {
    width: 540px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
}

.contact .contact-item {
    width: 260px;
}

/* 下载按钮：天蓝透明效果 */
.download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 50px;
    font-size: 18px;
    color: #fff;
    border-radius: 90px;
    background: linear-gradient(180deg, rgba(135, 206, 250, 0.8) 0%, rgba(0, 191, 255, 0.7) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.download img {
    margin-right: 5px;
}

/* 泡泡区域统一为天蓝透明，不再使用红黄渐变 */
.paopao .download {
    background: linear-gradient(180deg, rgba(135, 206, 250, 0.8) 0%, rgba(0, 191, 255, 0.7) 100%);
}

.fy a, .paopao a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    width: 132px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    margin-top: 13px;
    border-radius: 90px;
    background: rgba(0, 191, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.paopao a {
    background: rgba(0, 191, 255, 0.6);
}

.speedStatus{
    margin: 30px auto 40px;
}

/* 线路外框：改为天蓝色边框 */
.speedBox {
    width: 720px;
    height: 296px;
    box-sizing: border-box;
    border: 8px solid #00BFFF; /* 亮天蓝边框 */
    box-shadow: 0px 4px 15px rgba(0, 191, 255, 0.2);
    border-radius: 30px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.2); /* 容器高级透明背景 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 10px;
}

.speedBox li {
    display: flex;
    width: 324px;
    height: 50px;
    margin-bottom: 14px;
}

.speedBox li>div{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8); /* 线路名微透明白色 */
}

.speedBox img {
    margin-right: 5px;
}

.speedBox li>div:first-child{
    width: 100px;
    border-radius: 20px 0px 0px 20px;
}

.speedBox li>div:nth-child(2){
    width: 120px;
}

/* 前往地址按钮：纯净天蓝色 */
.speedBox li a {
    background: #00BFFF;
    border-radius: 0px 20px 20px 0px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
}

.j-copytips {
    position: fixed;
    width: 80px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    color: #00BFFF;
    border-radius: 5px;
    background-color: #fff;
    top: 10%;
    left: 50%;
    margin-left: -50px;
    display: none;
    text-align: center;
}