﻿body {
    padding: 0px !important;
    margin: 0px !important;
    
}
.container {
    width: 100%;

}
    .container::-webkit-scrollbar {
        display: none; /* 隐藏滚动条但保留滚动能力 */
    }
p{
    margin: 0px;
    padding: 0px;
}
/* 移除所有链接的默认样式 */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

    /* 可选：移除访问过链接的特殊样式 */
    a:visited {
        color: inherit;
    }

    /* 可选：移除悬停和活动状态样式 */
    a:hover, a:active {
        color: inherit;
        text-decoration: none;
    }


.header-bar {
    width: 100%;
    height: 96px;
    background: #14C476;
}
.home-head {
    position: relative;
}
.top-menu {
    position: absolute;
    left: 200px;
    top: 15px;
    display: flex;
    
}

    .top-menu .menu {
        color: #fff;
        display: flex;
        margin-top: 21px;
        margin-left: 70px;
       
        font-family: Microsoft YaHei, Microsoft YaHei;
    }

        .top-menu .menu .item {
            text-align: center;
            margin-right: 80px;
            font-weight: 400;
            font-size: 18px;
            font-weight: normal;
            color: #F0F0F0;
        }

            .top-menu .menu .item.selected {
                font-size: 20px;
                font-weight: bold;
                color: #fff;
               
            }

            .top-menu .menu .item .tab-green {
                width: 32px;
                background-color: #14C476;
                height: 3px;
                display: block;
                margin: 0px auto;
                margin-top: 8px;
            }
            .top-menu .menu .item .tab-white {
                width: 32px;
                background-color: #fff;
                height: 3px;
                display: block;
                margin: 0px auto;
                margin-top: 8px;
            }
.right-act {
    display: flex;
    color: #fff;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    text-align: right;
    font-style: normal;
    text-transform: none;
    position:absolute;
    right:-400px;
    top:20px;
    align-items:center;
    
}
    .right-act img {
        width:18px;
        height:18px;

        margin-right:30px;
    }


    .wd-footer {
        width:100%;
        height: 428px;
        background: #F8F8F8;
        clear: both;
    }

.wd-footer-menu {
    display: flex;
    margin-left: 200px;
    margin-right: 200px;
}

    .wd-footer-menu .menu-item {
        text-align: left;
        margin-top: 60px;
        color: #495C6A;
        font-size: 16px;
        flex:1;
    }

        .wd-footer-menu .menu-item p {
            margin-bottom: 16px;
        }

    .wd-footer-menu .ftit {
        height: 26px;
        font-weight: 400;
        font-size: 18px;
        color: #444;
        line-height: 26px;
        text-align: left;
        font-style: normal;
        text-transform: none;
        display: block;
    }

    .wd-footer-menu .f-menu-logo {
        display: flex;
    }

        .wd-footer-menu .f-menu-logo img {
            width: 90px;
            height: 90px;
        }

    .wd-footer-menu .f-menu-item {
        flex: 1;
        text-align: center;
        margin-right: 20px;
        justify-content: center;
    }

    .wd-footer-menu .logot {
        height: 26px;
        font-family: Microsoft YaHei, Microsoft YaHei;
        font-weight: 400;
        font-size: 14px;
        color: #6C6C6C;
        line-height: 26px;
        text-align: center;
        font-style: normal;
        text-transform: none;
    }

.wd-footer-protocol {
    display: flex;
    margin: 0px auto;
    margin-top: 41px;
    margin-bottom: 40px;
    margin-left: 200px;
    margin-right: 200px;
    position:relative;
}

    .wd-footer-protocol .item {
        flex: 1;
        height: 24px;
        font-family: Microsoft YaHei, Microsoft YaHei;
        font-weight: 400;
        font-size: 16px;
        color: #181818;
        line-height: 24px;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }

        .wd-footer-protocol .item.b {
            flex: 0.8;
        }



input,
textarea
 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
}

    /**自定义checkbox*/
    input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 14px;
        height: 14px;
        border: 2px solid #ccc;
        border-radius: 3px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        transition: all 0.2s ease;
    }

        /* 选中状态样式 */
        input[type="checkbox"]:checked {
            background-color: #14C476;
            border-color: #14C476;
        }

            /* 自定义勾选标记 */
            input[type="checkbox"]:checked::after {
                content: "";
                position: absolute;
                left: 2px;
                top: -1px;
                width: 4px;
                height: 8px;
                border: solid white;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

        /* 禁用状态 */
        input[type="checkbox"]:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

 /**自定义radio*/
 .radio-group,.chk-group{
     display:flex;
     align-items:center;
 }
/* 隐藏原生radio */
.radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* 基础样式 */
.radio-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
    font-family: Arial, sans-serif;
}

    /* 未选中状态图标 */
    .radio-label::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 1px solid #ccc;
        border-radius: 50%;
        margin-right: 8px;
        transition: all 0.3s ease;
        box-shadow: inset 0 0 0 4px white;
    }

/* 选中状态样式 */
input[type="radio"]:checked + .radio-label::before {
    border-color: #14C476;
    background-color: #14C476;
    box-shadow: inset 0 0 0 3px white;
}

/* 悬停效果 */
.radio-label:hover::before {
    border-color: #888;
}

/* 禁用状态 */
input[type="radio"]:disabled + .radio-label {
    color: #aaa;
    cursor: not-allowed;
}

    input[type="radio"]:disabled + .radio-label::before {
        border-color: #ddd;
        background: #f5f5f5;
    }

select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}
