/* 合作代理商页面样式 */
.proxy-main {
    background: #FFF;
    padding-bottom: 40px;
}

/* 代理商Banner区域 */
.proxy-banner {
    position: relative;

}
.proxy-banner-img{
    width: 100%;
    object-fit: cover;
}
.proxy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.banner-stars {
    margin-bottom: 15px;
}

.star {
    font-size: 24px;
    color: #FFD700;
    margin: 0 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.laurel-left,
.laurel-right {
    font-size: 32px;
    color: #FFD700;
}

.banner-warning {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-wukong-left,
.banner-wukong-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0.3;
}

.banner-wukong-left {
    left: 20px;
}

.banner-wukong-right {
    right: 20px;
}

/* 代理商网格布局 */
.proxy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.proxy-card {
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
}
.proxy-card .card-header-info{
    width: 220px;
    height: 142px;
    border-radius: 10px;
    padding: 12px;
    background: url('/web/images/agent/proxy-bg1.png') center/contain no-repeat;
}
.bottom-btn:hover {
    transform: translateY(-5px);
}
.bottom-btn{
    display: flex;
    width: 224px;
    height: 40px;
    margin-top: 8px;
    padding: 14px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    flex-shrink: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(180deg, #FF8D24 0%, #FFAD1F 100%);
}
.card-header {
    border-radius: 16px;
    position: relative;
    height: 48px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/web/images/agent/proxy-bg2.png') center/contain no-repeat;
}
/*
.card-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFB366;
    border-radius: 16px;
} */

.card-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    position: absolute;
    top: 8px;
}

.card-icon.left {
    left: 15px;
}

.card-icon.right {
    right: 15px;
}

.agent-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    z-index: 2;
    position: relative;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.qq-info {
    font-size: 22px;
    font-weight: bold;
    color: #FF8D24;
    margin: 0 0 10px 0;
}

.wechat-info {
    font-size: 14px;
    color: #07C160;
    font-weight: 500;
    margin: 0;
}

.guarantee-info {
    font-size: 14px;
    color: #FF6B35;
    font-weight: 500;
    margin: 0;
}

.shield-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: rgba(255, 179, 102, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

