

        main{
            padding-bottom: 100px;
        }

        
        main .contn .side .sonLink a{
            display: block;
            font-size: 14px;
            padding: 10px 0px;
            text-transform: capitalize;
            border-bottom: 1px solid #e5e5e5;
            transition: all ease .3s;
        }
        main .contn .side .sonLink a:hover{
            color: #008486;
            background: #fafafa;
            padding-left: 10px;
        }

        main .comment .content .list .item{
            margin-bottom: 30px;
        }
        main .comment .content .list .item .where{
            margin-bottom: 10px;
            border-bottom: 1px solid #e5e5e5;
            font-size: 18px;
            text-transform: uppercase;
            color: #008486;
            font-family: ans-serif;
            font-weight: normal;
            padding-bottom: 10px;
        }
        main .comment .content .list .item .t{
            font-size: 14px;
            line-height: 24px;
            color: #676767;
            overflow: hidden;
            height: 48px;
            transition: height linear .3s;
        }
        main .comment .content .list .item .retract{
            display: inline-block;
            vertical-align: top;
            color: red;
            margin-top: 10px;
            font-size: 12px;
            text-transform: uppercase;
        }

        main .comment .content .form .ttl{
            color: #008486;
            margin-bottom: 10px;
            border-bottom: 1px solid #e5e5e5;
            font-size: 18px;
            text-transform: uppercase;
            font-family: sans-serif;
            font-weight: normal;
            padding-bottom: 10px;
        }
        main .comment .content .form form{
            margin-top: 20px;
            background: #fafafa;
            padding: 40px 20px;
        }
        main .comment .content .form form .form-group{
            margin-bottom: 15px;
        }
        main .comment .content .form form .form-group>*{
            display: inline-block;
            vertical-align: top;
        }
        main .comment .content .form form .form-group .formName{
            font-size: 13px;
            display: inline-block;
            color: #808080;
            width: 15%;
            font-weight: normal;
            vertical-align: top;
            padding-right: 10px;
            text-align: right;
            line-height: 36px;
        }
        main .comment .content .form form .form-group .formName.rqd::after{
            content: '*';
            color: red;
            font-size: 12px;
            font-weight: bold;
        }
        main .comment .content .form form .form-group .formName + *{
            width: 50%;
            height: 36px;
            line-height: 36px;
            border: 1px solid #ccc;
            padding-left: 10px;
            font-size: 12px;
        }
        main .comment .content .form form .form-group .formName + textarea{
            height: 200px;
            line-height: 1.5;
        }
        main .comment .content .form form .form-group .formName + select{
            height: 36px;
            border: 1px solid #ccc;
            width: 30%;
            font-size: 13px;
            padding-left: 5px;
        }
        main .comment .content .form form .form-group.slct{
            position: relative;
        }
        main .comment .content .form form .form-group.slct::after{
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 56%;
            border-top: 8px solid #000;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
        }
        main .comment .content .form form .submit{
            border-radius: 5px;
            background: #008486;
            color: #fff;
            text-align: center;
            padding: 8px 40px;
            display: inline-block;
            margin-left: 150px;
            margin-top: 10px;
            font-size: 14px;
            width: auto;
        }
        main .comment .content .form form .submit:hover{
            transition: .3s linear all;
            background: #ee921f;
        }

        @media(max-width:1200px){
            main .comment .content .form form .form-group .formName{
                width: 21%;
            }
            main .comment .content .form form .form-group.slct::after{
                right: 50%;
            }
        }
        @media(max-width:767px){
            main .comment .content .form form{
                padding: 30px 15px;
            }
            main .comment .content .form form .form-group .formName{
                display: block;
                width: 100%;
                text-align: left;
                line-height: initial;
                padding-top: 6px;
                padding-bottom: 6px;
                margin-bottom: 5px;
            }
            main .comment .content .form form .form-group .formName + *{
                display: block;
                width: 100%;
            }
            main .comment .content .form form .form-group.slct::after{
                top: auto;
                bottom: 18px;
                transform: translateY(50%);
                right: 55%;
            }
            main .comment .content .form form .form-group .formName + select{
                width: 50%;
            }
            main .comment .content .form form .submit{
                margin-left: 0px;
            }
        }