/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra theme
Author: tangyi
Author URI: yitong-a.cn
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Add your custom CSS rules here */

/* 版心容器样式 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 公司社交媒体展示样式 */
.custom-social-share {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.custom-social-share h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.social-share-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

/* 首页"Follow Us"社交媒体图标样式 */
.elementor-social-icons-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.elementor-icon.elementor-social-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .social-share-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .elementor-icon.elementor-social-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .social-share-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .elementor-icon.elementor-social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

