
/* books_page */
.books_page{
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.books_container{
    width: 100%;
    height: auto;
}
.books_screen_box{
    width: 100%;
    height: auto;
}
.books_screen_section1{
    width: 100%;
    height: auto;
    padding: 20px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
}
.books_screen_item{
    width: 100%;
    height: auto;
    min-height: 42px;
    margin: 10px 0;
    padding-left: 100px;
    box-sizing: border-box;
    position: relative;
}
.books_screen_item .title_box{
    width: 90px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    text-align: right;
    padding: 6px 0;
    box-sizing: border-box;
}
.books_screen_item .title_box p{
    font-size: 16px;
    color: #333;
    line-height: 30px;
    font-weight: 500;
}
.books_screen_item_list{
    width: 100%;
    height: auto;
    position:relative;
}
.books_screen_item_list ul li{
    float: left;
    width: auto;
    height: auto;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    text-align: center;
    padding: 4px 15px;
    box-sizing: border-box;
    border-radius: 30px;
    cursor: pointer;
    margin: 5px;
}
.books_screen_item_list ul li.active{
    background: #1b88dd;
    color: #fff;
}
.books_screen_item_list ul li:hover{
    background: #1b88dd;
    color: #fff;
}

.books_screen_section2{
    width: 100%;
    height: auto;
    padding: 20px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    margin-top: 20px;
}
.books_screen_input_box{
    width: 100%;
    height: auto;
}
.books_screen_input_box label{
    float: left;
    width: auto;
    height: 32px;
    font-size: 14px;
    color: #666666;
    line-height: 32px;
    margin-right: 30px;
}
.books_screen_input_box label input{
    margin-right: 5px;
}
.books_screen_input_box label span{
    display: inline-block;
    vertical-align: bottom;
}

/* books_list_container */
.books_list_container{
    width: 100%;
    height: auto;
    padding: 30px 40px;
    padding-bottom: 60px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    margin-top: 20px;
}
.books_list_box{
    width: 100%;
    height: auto;
}
.books_list_box ul{
    margin: 0 -1.5%;
}
.books_list_box ul li{
    float: left;
    width: 47%;
    height: 150px;
    margin: 20px 1.5%;
    position: relative;
    padding-left: 110px;
    box-sizing: border-box;
}
.books_list_box ul li a{
    display: block;
}
.books_list_box ul li .pic_box{
    width: 110px;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
.books_list_box ul li .pic_box .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.books_list_box ul li .text_box{
    width: 100%;
    height: 150px;
    padding-left: 20px;
    padding-bottom: 40px;
    box-sizing: border-box;
    position: relative;
}
.books_list_box ul li .text_box h3{
    font-size: 14px;
    color: #333;
    line-height: 24px;
    font-weight: 600;

     overflow: hidden; 
    white-space: nowrap;  
    text-overflow: ellipsis; 

}

.books_list_box ul li .text_box  .price{
    font-size: 14px;
    color: #f59e07;
    line-height: 24px;
    margin-top: 5px;
}

.books_list_box ul li .text_box .article{
    font-size: 12px;
    color: #666;
    line-height: 20px;
    margin-top: 10px;
    height: 40px;
    display: -webkit-box;    
    -webkit-box-orient: vertical;    
    -webkit-line-clamp: 2;    
    overflow: hidden;
    text-overflow:ellipsis;
}

.books_list_box ul li .text_box .label_box {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.books_list_box ul li .text_box .label_box span{
    float: left;
    width: auto;
    height: auto;
    font-size: 12px;
    color: #333;
    line-height: 20px;
    text-align: center;
    padding: 2px 12px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    border-radius: 30px;
    margin-right: 8px;
}
.books_list_box ul li .text_box .label_box .label_1{
    color: #f59e07;
    background: rgba(245, 158, 7, 0.12);
}
.books_list_box ul li .text_box .label_box .label_2{
    color: #1b88dd;
    background: rgba(27, 136, 221, 0.12);
}


.books_list_box ul li .text_box .download_link{
    display: inline-block;
    width: 90px;
    height: auto;
    border: 1px solid #d5d5d5;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 40px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    left: 20px;
    bottom: 0;
}
.books_list_box ul li .text_box .download_link:hover{
    background: #1b88dd;
    color: #fff;
    border: 1px solid #fff;
}

.document_list_box ul li .pic_box{
    border: 1px solid #ddd;
}


.books_list_box ul li:hover .text_box h3 {
    color:#1874bc;
}


.books_list_container .member_center_content {
    padding:0;
    box-shadow: none;
}

.books_list_container .member_center_content .return_box {
    width:100%;
    height:auto;
    padding:10px;
    padding-top:60px;
    box-sizing:border-box;
    text-align:center;
}
.books_list_container .member_center_content .return_box  .link {
    display:inline-block;
    min-width: 120px;
    width:auto;
    height: auto;
    background: #f59e07;
    box-sizing: border-box;
    padding: 6px 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
}
.books_list_container .member_center_content .return_box  .link:hover{
    background: #db8d07;
}

/* download_payment_page */
.download_payment_page{
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.download_payment_container{
    width: 100%;
    height: auto;
    padding: 30px 80px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
}

.book_information_box{
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.book_information_box .title_box{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.book_information_box .title_box h2{
    font-size: 20px;
    color: #333333;
    line-height: 40px;
    font-weight: 600;
}
.book_information_section{
    width: 100%;
    height: auto;
    padding: 20px 25px;
    box-sizing: border-box;
    border: 1px solid #ededed;
    border-radius: 6px;
}
.book_information_section .item{
    float: left;
    width: auto;
    height: 150px;
    border-right: 1px solid #ededed;
    box-sizing: border-box;
    padding: 25px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.book_information_section .item1{
    width: 50%;
    padding-left: 130px;
    position: relative;
}
.book_information_section .item2{
    width: 23%;
}
.book_information_section .item3{
    width: 27%;
    border-right: none;
}
.book_information_section .item1 .pic_box{
    width: 110px;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    overflow: hidden;

    border: 1px solid #ddd;
    box-sizing: border-box;
}
.book_information_section .item1 .pic_box .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.book_information_section .item1 h3{
    font-size: 14px;
    color: #333;
    line-height: 26px;
    font-weight: 600;
}
.book_information_section .item2 p{
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    text-align: center;
}
.book_information_section .item3 p{
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    text-align: right;
}
.book_information_section .item3 .price{
    display: inline-block;
    font-size: 24px;
    color: #ef3a35;
    vertical-align: bottom;
}

.download_instructions_box{
    width: 100%;
    height: auto;
    padding: 40px 80px;
    box-sizing: border-box;
    margin-top: 20px;
}
.download_instructions_box h3{
    font-size: 16px;
    color: #333;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}
.download_instructions_box p{
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin: 5px 0;
}



.book_payment_box{
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}
.book_payment_box .title_box{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.book_payment_box .title_box h2{
    font-size: 20px;
    color: #333333;
    line-height: 40px;
    font-weight: 600;
}
.payment_method{
    width: 100%;
    height: auto;
}
.book_payment_box .payment_method { width: 100%; height: auto; }
.book_payment_box .payment_method .payment_method_icon { float: left; width: 180px; height: auto; margin-right: 20px; text-align: center; position: relative; }
.book_payment_box .payment_method .payment_method_icon label { display: block; width: 100%; height: 70px; border: 2px solid #eee; border-radius: 2px; margin-right: 30px; text-align: center; position: relative; }
.book_payment_box .payment_method .icon_zfb label.active { border: 2px solid #04a7f4; }
.book_payment_box .payment_method .icon_wx label.active { border: 2px solid #00c800; }
.book_payment_box .payment_method .icon_zfb svg { display: block; width: 120px; height: 50px; position: absolute; top: 10px; left: 30px; }
.book_payment_box .payment_method .icon_wx svg { display: block; width: 130px; height: 50px; position: absolute; top: 10px; left: 25px; }


.book_submit_order { width: 100%; height: auto; padding: 40px 0; padding-bottom: 20px; box-sizing: border-box; border-top: 1px solid #ededed;}

.book_submit_order p { font-size: 16px; color: #666; line-height: 40px; text-align: right; }

.book_submit_order p strong { font-size: 28px; color: #ef3a35; }

.book_submit_order_payment { width: 100%; height: auto; margin-top: 25px; }

.book_submit_order_payment input { float: right; display: block; width: auto; height: auto; border: none; padding: 10px 40px; box-sizing: border-box; font-size: 16px; line-height: 30px; text-align: center; border-radius: 6px; color: #fff; background: #1b88dd; cursor: pointer; }

.book_submit_order_payment input:hover { background: #ef3a35; }




/* download_payment_success_page */
.download_payment_success_page{
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.download_payment_success_container{
    width: 100%;
    height: 430px;
    padding: 30px 80px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

}
.download_payment_success_container .section1_box{
    width: 100%;
    height: auto;
}
.download_payment_success_container .section1_box .pic_icon{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.download_payment_success_container .section1_box .pic_icon img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.download_payment_success_container .section1_box h2{
    font-size: 24px;
    color: #333333;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
}
.download_payment_success_container .link_box{
    width: 100%;
    height: auto;
    margin-top: 50px;
}
.download_payment_success_container .link_box a{
    display: inline-block;
    width: 120px;
    height: 40px;
    font-size: 14px;
    color: #666666;
    line-height: 38px;
    text-align: center;
    border: 1px solid #ededed;
    margin: 0 15px;
    border-radius: 6px;
}
.download_payment_success_container .link_box a:hover{
    background: #1b88dd;
    color: #fff;
    border: 1px solid #1b88dd;
}


/* download_payment_member_section */
.download_payment_member_section{
    width: 100%;
    height: auto;
}
.download_payment_member_section_list{
   margin: 0 -13px;
}
.download_payment_member_section .member_section_box{
    float:left;
    width: 250px;
    height: 125px;
    border: 2px solid #ddd;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(235, 235, 235, 0.38);
    padding: 20px 35px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    cursor:pointer;

    margin: 13px;
}

.download_payment_member_section .member_section_box .price{
    width: 100%;
    height: auto;
    padding-bottom: 5px;
    border-bottom: 1px dashed #666;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
    line-height: 40px;
    letter-spacing: 1px;
}
.download_payment_member_section .member_section_box .price span{
    font-size: 32px;
    margin-right: 5px;
}
.download_payment_member_section .member_section_box .text{
    font-size: 15px;
    color: #666;
    line-height: 20px;
    letter-spacing: 1px;
}


.download_payment_member_section .member_section_box_active .price {
    color: #f59e07;
    border-bottom: 1px dashed #f59e07;
}
.download_payment_member_section .member_section_box_active .text {
     color: #f59e07;
}
.download_payment_member_section .member_section_box_active {
    border: 2px solid #f59e07;
    box-shadow: 0 0 10px 0 rgba(255, 138, 0, 0.38);
}
.download_payment_member_section .member_section_box:hover {
    border: 2px solid #f59e07;
    box-shadow: 0 0 10px 0 rgba(255, 138, 0, 0.38);
}
.download_payment_member_section .member_section_box:hover .price {
    color: #f59e07;
    border-bottom: 1px dashed #f59e07;
}
.download_payment_member_section .member_section_box:hover .text {
     color: #f59e07;
}




/* book_payment_wx_box */
.book_payment_wx_container {
    padding: 50px 80px;
}
.book_payment_wx_box { 
    width: 520px; 
    height: auto; 
    margin: 0 auto; 
    background: #f8f8f8; 
}
.book_payment_wx_box h2 { 
    height: 60px; 
    line-height: 60px; 
    font-size: 20px; 
    font-weight: normal; 
    border-top-left-radius: 4px; 
    border-top-right-radius: 4px; 
    background: #ef3a35;
    color: #fff; 
    box-sizing: border-box; 
    padding: 0 20px; 
}
.book_payment_wx_box .order_pay_wx_box { 
    width: 100%; 
    height: auto; 
    padding: 50px 35px; 
    box-sizing: border-box; 
}
.book_payment_wx_box .order_pay_wx_box .code { 
    width: 100%; 
    height: auto; 
    margin-bottom: 30px; 
}
.book_payment_wx_box .order_pay_wx_box .code img { 
    display: block; 
    width: 240px; 
    height: auto; 
    margin: 0 auto; 
}
.book_payment_wx_box .order_pay_wx_box p { 
    font-size: 14px; 
    color: #333; 
    line-height: 30px; 
    text-align: center; 
}
.book_payment_wx_box .order_pay_wx_box .price { 
    font-size: 24px; 
    color: #ef3a35; 
    line-height: 30px; 
    margin-bottom: 20px; 
}




/* register */
.register_page{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;

    zoom: 1;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.register_page .section_container_con{
    height: 100%;
}
.register_container{
    width: 435px;
    height: 100%;
    float: right;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.register_container .signup_box{
    width: 100%;
    height: 590px;
    padding: 40px 20px;
    padding-top: 45px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.register_container .signup_box .logo{
    width: 100%;
    height: auto;
    margin: 20px auto;
}
.register_container .signup_box .logo img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.register_container .signup_box .title{
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}
.register_container .signup_box .title a {
    display:block;
}
.register_container .signup_box .title h2{
    font-size: 26px;
    color: #333;
    line-height: 40px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.register_container .signup_box .title p{
    font-size: 16px;
    color: #666;
    line-height: 26px;
    text-align: center;
    letter-spacing: 1px;
}
.register_container .signup_box_conter{
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.register_container .signup_box_conter .item{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    position: relative;
}
.register_container .signup_box_conter .item input{
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px 15px;
    box-sizing: border-box;

    font-size: 14px;
    color: #666;
    line-height: 28px;
    border-radius: 10px;
}
.register_container .signup_box_conter .item_captcha input{
    padding-right: 120px;
    box-sizing: border-box;
    
} 
.register_container .signup_box_conter .item_captcha a{
    display: block;
    width: 110px;
    height: auto;
    padding: 10px 15px;
    box-sizing: border-box;

    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
}
.register_container .signup_box_conter .item_captcha a:hover{
    color: #1b88dd;
}

.register_container .signup_box_conter .item_agreement{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    position: relative;
}
.register_container .signup_box_conter .item_agreement label{
    display: inline-block;
    font-size: 14px;
    color: #666;
    line-height: 30px;
    vertical-align: middle;
}
.register_container .signup_box_conter .item_agreement label a{
    display: inline-block;
    color: #1874bc;
    margin: 0 5px;
}
.register_container .signup_box_conter .item_agreement label a:hover{
    color: #1b88dd;
    text-decoration: underline;
}
.register_container .signup_box_conter .item_btn{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    position: relative;
}
.register_container .signup_box_conter .item_btn button{
    display: block;
    width: 100%;
    height: auto;
    border: none;
    background: #1874bc;
    padding: 10px 15px;
    box-sizing: border-box;

    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 10px;

    cursor: pointer;
}
.register_container .signup_box_conter .item_btn button:hover{
    background: #1b88dd;
}
.register_container .signup_text_box{
    width: 100%;
    height: auto;
}
.register_container .signup_text_box p{
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}
.register_container .signup_text_box p a{
    color: #1874bc;
    margin-left: 5px;
}
.register_container .signup_text_box p a:hover{
    color: #1b88dd;
    text-decoration: underline;
}
.register_container .login_box .login_link{
    float: left;
    width: 100%;
    height: auto;
}
.register_container .login_box .login_link a{
    float: right;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    text-align: right;
}
.register_container .login_box .login_link .dxdl{
    float: left;
    color: #333;
}
.register_container .login_box .login_link a:hover{
    color: #1b88dd;
    text-decoration: underline;
}
.register_container .login_box .signup_box_conter .item_btn{
    margin-top: 20px;
}
.reset_password_page .register_container .signup_box_conter .item_btn{
    margin-top: 10px;
}
.reset_password_page .register_container .signup_box{
    height: 505px;
}
.register_container .login_box{
    height: 475px;
}



/* member_center_page */
.member_center_page{
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.member_center_page .section_container_con{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.member_center_container{
    width: 100%;
    height: auto;
    min-height: 650px;
    position: relative;
    padding-left: 220px;
    box-sizing: border-box;
}
.member_center_sidebar{
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #4e5865;
    border-top: 6px solid #1b88dd;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 15px 0;
}
.member_center_sidebar .user_avatar_box{
    width: 100%;
    height: auto;
    padding: 20px 0;
    padding-bottom: 30px;
    box-sizing: border-box;
}
.member_center_sidebar .user_avatar{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.58);
    margin-bottom: 10px;
}
.member_center_sidebar .user_avatar .pic_box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.member_center_sidebar .user_avatar_box p{
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    text-align: center;
}
.member_center_sidebar_container{
    width: 100%;
    height: auto;
}
.member_center_sidebar_container .item_link{
    width: 100%;
    height: auto;
    margin: 5px 0;
}
.member_center_sidebar_container .item_link a{
    display: block;
    width: 100%;
    height: auto;
    padding: 13px 30px;
    padding-left: 70px;
    box-sizing: border-box;
    position: relative;
}
.member_center_sidebar_container .item_link a.active{
    background: #3e4651;
}
.member_center_sidebar_container .item_link a:hover{
    background: #3e4651;
}
.member_center_sidebar_container .item_link  .icon_box{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 13px;
    left: 25px;
}
.member_center_sidebar_container .item_link  .icon_box img{
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    margin-top: 5px;
}
.member_center_sidebar_container .item_link h3{
    font-size: 15px;
    color: #fff;
    line-height: 30px;
    font-weight: 600;
}


.member_center_content{
    width: 100%;
    height: auto;
    min-height: 650px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    padding: 20px;
    box-sizing: border-box;
}
.personal_information_box{
    width: 100%;
    height: auto;
    padding: 20px 0;
    box-sizing: border-box;
}
.personal_information_form{
    width: 100%;
    height: auto;
}
.personal_information_box .form{
    width: 100%;
    height: auto;
}
.personal_information_form .item{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.personal_information_form .item label{
    float: left;
    width: 120px;
    height: 40px;
    padding: 5px;
    padding-right: 30px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666666;
    line-height: 30px;
    text-align: right;
}
.personal_information_form .item .input_box{
    float: left;
    width: 400px;
    height: auto;
    position: relative;
}

.personal_information_form .item_avatar .input_box { 
    display:block;
    width:70px;
    min-width:initial;
    height:70px;
    overflow:hidden;
    position:relative;
    border-radius:50%;
}
.personal_information_form .item_avatar .input_box .pic_warp {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.personal_information_form .item_avatar .member_vip_time {
    float: left;
    width:100%;
    height:auto;
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    padding-top:5px;
    padding-left:120px;
    box-sizing:border-box;
}
.personal_information_form .item_avatar .member_vip_time a { 
    color: #1874bc; 
    margin-left: 10px; 
}
.personal_information_form .item_avatar .member_vip_time a:hover { 
    color: #e43d00; 
}

 
.personal_information_form .item input[type="text"]{
    float: left;
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    padding: 5px 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    border-radius: 6px;
}
.personal_information_form .item input[type="password"]{
    float: left;
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    padding: 5px 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    border-radius: 6px;
}
.personal_information_form .item textarea{
    float: left;
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    padding: 5px 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    border-radius: 6px;
}
.personal_information_form .item_btn{
    width: 520px;
    height: auto;
    margin: 50px 0;
    padding-left: 120px;
    box-sizing: border-box;
}
.personal_information_form .item_btn button{
    display: block;
    width: 130px;
    height: auto;
    padding: 7px 10px;
    box-sizing: border-box;
    background: #1b88dd;
    border: none;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    font-weight:600;
    text-align: center;
    letter-spacing: 2px;
    margin: 0 auto;
    border-radius: 50px;
    cursor: pointer;
}
.personal_information_form .item_btn button:hover{
    background: #1874bc;
}
.personal_information_form .item_avatar input[type="text"] {
    width: 460px;
}
.personal_information_form .item_avatar button{
    float: left;
    width: 110px;
    height: auto;
    padding: 5px 10px;
    box-sizing: border-box;
    background: #980228;
    border: none;
    font-size: 14px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 30px;
}
.personal_information_form .item_avatar button:hover{
    background: #800020;
}




.personal_information_form .item_captcha input{
    padding-right: 120px;
    box-sizing: border-box;
    
} 
.personal_information_form .item_captcha a{
    display: block;
    width: 110px;
    height: auto;
    padding: 5px 15px;
    box-sizing: border-box;

    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
}
.personal_information_form .item_captcha a:hover{
    color: #1b88dd;
}




.personal_information_form .item_avatar .input_box .upload-box {
    width:100%;
    height:30px;
    position:absolute;
    left:0;
    bottom:0;
}
.personal_information_form .item_avatar .input_box .upload-box .webuploader-pick {
      width:70px !important;
      background: rgba(255, 255, 255,0.38);
      font-size:13px;
      line-height:26px;
}
.personal_information_form .item_avatar .input_box .upload-box label {
    width:70px !important;
    padding-right:5px;
}





/* my_comments_box */
.my_comments_box {
    width: 100%;
    height: auto;
    padding: 20px 0;
    padding-bottom: 80px;
    box-sizing: border-box;
}
.member_center_content table{
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    display: inline-table;
    border-collapse: collapse;
}
.member_center_content table thead td{
    min-width: 60px;
    font-weight: 600;
    color: #000;
    text-align: left;
}
.member_center_content table thead{
    background: #1b88dd;
}
.member_center_content table thead td{
    color: #fff;
}
.member_center_content table td{
    font-size: 14px;
    color: #666;
    line-height: 24px;
    padding: 10px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
}
.member_center_content table .time{
    font-size: 12px;
}
.member_center_content table tbody tr:nth-of-type(even){
    background: #fafafa;
}
.member_center_content table tbody tr:hover{
    background: #f5f5f5;
}
.member_center_content table td a {
     color: #666;
}
.member_center_content table td a:hover{
    text-decoration: underline;
    color: #1874bc;
}

.my_collection_box table td .word_icon{
    display: inline-block;
    margin-right: 5px;
}
.my_collection_box table td .word_icon i {
    display: inline-block;
    width: 20px;
    height: 24px;
    background: url(../images/word_icon.png) no-repeat center center;
    background-size: 18px;
    vertical-align: bottom;
}
.my_collection_box table td .pdf_icon i{
    background: url(../images/word_icon.png) no-repeat center center;
    background-size: 18px;
}


/* my_collection_page */
.my_collection_page{
    width: 100%;
    height: auto;
    padding-top: 20px;
    box-sizing: border-box;
}
.my_collection_nav{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.my_collection_nav ul li{
    float: left;
    width: auto;
    min-width: 90px;
    height: auto;
    font-size: 15px;
    color: #333333;
    line-height: 30px;
    text-align: center;
    padding: 5px 25px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #ededed;
    margin-right: 15px;
    cursor: pointer;
}
.my_collection_nav ul li.active{
    background: #1b88dd;
    color: #fff;
}
.my_collection_nav ul li.active a{
    color: #fff;
}
.my_collection_nav ul li:hover{
    background: #1b88dd;
    color: #fff;
}
.my_collection_container{
    width: 100%;
    height: auto;
    min-height: 500px;
}
.my_collection_container .my_collection_item{
    width: 100%;
    height: auto;

}

.my_collection_box table td .pic_box{
    display: inline-block;
    width: 20px;
    height: 24px;
    border-radius: 4px;
    margin-right: 5px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}
.my_collection_box table td .pic_box .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}


/* books_details_page */
.books_details_page{
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.books_details_container{
    width: 100%;
    height: auto;
    min-height: 700px;
    position: relative;
    padding-right: 380px;
    box-sizing: border-box;
}
.books_details_content{
    width: 100%;
    height: auto;
}

.books_details_section1{
    width: 100%;
    height: auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    border-radius: 6px;
}
.books_details_section1_con{
    width: 100%;
    height: auto;
    min-height: 320px;
    position: relative;
    padding-left: 260px;
    box-sizing: border-box;
}
.books_details_section1 .left_pic_box {
    width: 240px;
    height: 240px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    overflow: hidden;
}
.books_details_section1 .left_pic_box .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.books_details_section1 .right_text_box{
    width: 100%;
    height: auto;
    padding: 0 20px;
    box-sizing: border-box;
    position:relative;
}
.books_details_section1 .right_text_box h2{
    font-size: 24px;
    color: #333333;
    line-height: 32px;
    font-weight: 500;
    box-sizing:border-box;
}


.books_details_section1 .right_text_box .sc_link_box {
    width:auto;
    height:auto;
    position:absolute;
    top:-5px;
    right:20px;
}
.books_details_section1 .right_text_box .sc_link_box .savebutton{
    display:block;
    min-width:85px;
    width: auto;
    height: auto;
    box-sizing: border-box;
    padding: 6px 20px;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    background: #ef3a35;
    cursor:pointer;
}
.books_details_section1 .right_text_box .sc_link_box .savebutton:hover {
    background: #ca2a26;
}


.books_details_section1 .right_text_box .text_box{
    width: 100%;
    height: auto;
    padding-top: 15px;
    box-sizing: border-box;
}
.books_details_section1 .right_text_box .text_box p{
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    margin: 5px 0;
}
.books_details_section1 .right_text_box .text_box .price strong{
    display: inline-block;
    font-size: 20px;
    color: #ef3a35;
    font-weight: 500;
}
.books_details_section1  .right_text_box .link_box{
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.books_details_section1  .right_text_box .link_box a{
    float: left;
    width: 120px;
    height: auto;
    box-sizing: border-box;
    padding: 6px 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    margin-right: 20px;
  
}
.books_details_section1  .right_text_box .link_box a.tsxz_link{
    background: #f59e07;
 
}
.books_details_section1  .right_text_box .link_box a.tsxz_link:hover{
    background: #db8d07;
}
.books_details_section1  .right_text_box .link_box a.mfsd_link{
    background: #1b88dd;
}
.books_details_section1  .right_text_box .link_box a.mfsd_link:hover{
    background: #1874bc;
}

.books_details_section1  .number_box{
    width: 100%;
    height: auto;
    margin-top: 32px;
} 
.books_details_section1  .number_box_list{
    float: left;
    width: auto;
    height: auto;
    margin-right: 30px;
    padding: 11px 0;
    box-sizing: border-box;
}
.books_details_section1  .number_box_list ul li{
    float: left;
    width: auto;
    height: auto;
    padding-right: 20px;
    box-sizing: border-box;
    margin-right: 20px;
    border-right: 1px solid #ddd;
    font-size: 13px;
    color: #666;
    line-height: 20px;
}
.books_details_section1  .number_box_list ul li:last-child{
    border-right: none;
    margin-right: 0;
}
.books_details_section1  .number_box_list ul li i{
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 3px;
}
.books_details_section1  .number_box_list ul li span{
    display: inline-block;
    vertical-align: middle;
}
.books_details_section1  .number_box_list ul li i.gk_icon{
    background: url(../images/number_of_viewers_icon.png) no-repeat center center;
}
.books_details_section1  .number_box_list ul li i.xz_icon{
    background: url(../images/books_xz_icon.png) no-repeat center center;
}
.books_details_section1  .number_box_list ul li i.dz_icon{
    background: url(../images/books_dz_icon.png) no-repeat center center;
}
.books_details_section1 .number_box .share_link_box{
    float: left;
    width: 120px;
    height: auto;
    box-sizing: border-box;
    padding: 6px 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    background: #ededed;
    padding-left:40px;
    background: #ededed url(../images/books_fx_icon1.png) no-repeat 25px center;
    background-size:24px;
}
.books_details_section1 .number_box .share_link_box:hover{
    background: #1b88dd url(../images/books_fx_icon1_hover.png) no-repeat 25px center;
    background-size:24px;
    color: #fff;
}

.books_details_section2{
    width: 100%;
    height: auto;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    margin-top: 20px;
    border-radius: 6px;
}
.books_details_section2_con{
    width: 100%;
    height: auto;
}
.books_details_section2 .item{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.books_details_section2 .item h3 {
    font-size: 16px;
    color: #333333;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    font-size: 28px;
    margin-bottom: 47px;
}
.books_details_section2 .item .text_box{
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}
.books_details_section2 .item .text_box p{
    margin: 5px 0;
}

.books_details_section3{
    width: 100%;
    height: auto;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.038);
    margin-top: 20px;
    border-radius: 6px;
}
.books_details_section3_con{
    width: 100%;
    height: auto;
}



/* work_comment_module */
.work_comment_module{
    max-width: 1040px;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    margin: 0 auto;
}
.work_comment_module .comment_module{
    width: 100%;
    height: auto;
}
.work_comment_module .title{
    width: 100%;
    height: auto;
}
.work_comment_module .title h3{
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #333;
    line-height: 26px;
    font-weight: 600;
}
.comment_module .add_comment{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    box-sizing: border-box;
}
.comment_module .edit_comment{
    width: 100%;
    height: auto;
    padding: 15px 0;
    box-sizing: border-box;
}
.comment_module .edit_comment .pinlunt{
    width: 100%;
    height: auto;
    position: relative;
    padding-right: 100px;
    box-sizing: border-box;
}
.comment_module .edit_comment input{
    width: 100%;
    height: auto;
    padding: 6px 20px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    overflow: hidden;

    color: #666;
    font-size: 14px;
    line-height: 30px;
}
.comment_module .edit_comment .pinlunt .btnsubmit{
    width: 100px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 7px 20px;
    background: #1b88dd;
    border-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    border: none;
}
.comment_module .edit_comment .pinlunt .btnsubmit:hover{
    background: #1874bc;
    color: #fff;
}
.comment_module .comment_content{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    box-sizing: border-box;
}
.comment_content_list{
    width: 100%;
    height: auto;
}
.comment_content_list ul li{
    float: left;
    width: 100%;
    height: auto;
    padding: 10px 0;
    box-sizing: border-box;
}
.comment_content_list ul li .comment_info_box{
    width: 100%;
    height: auto;
    min-height: 50px;
    position: relative;
    padding-left: 55px;
    box-sizing: border-box;
}
.comment_content_list .comment_info_box .avatar{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}
.comment_content_list .comment_info_box .avatar img{
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
}
.comment_content_list .comment_info_box  .comment_info_box_conter{
    width: 100%;
    height: auto;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 5px;
}
.comment_content_list .comment_info_box .name{
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.comment_content_list .comment_info_box .name a{
    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    font-weight: 600;
}

.comment_content_list .commomcon{
    display: block;
    width: 100%;
    height: auto;
    font-size: 13px;
    color: #666;
    line-height: 24px;
}



.books_details_sidebar{
    width: 360px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
}
.books_details_sidebar .item_box{
    width: 100%;
    height: auto;
    padding: 30px 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 4%);
    border-radius: 6px;
    margin-bottom: 20px;
}
.books_details_sidebar .item_box .item_box_con{
    width: 100%;
    height: auto;
}
.books_details_sidebar .item_box .title_box{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.books_details_sidebar .item_box .title_box h3{
    font-size: 20px;
    color: #333333;
    line-height: 30px;
    font-weight: 600;
}
.books_details_sidebar .item_box .worklabel_box{
    width: 100%;
    height: auto;
}
.books_details_sidebar .item_box .worklabel_box a{
    float: left;
    width: auto;
    height: auto;
    padding: 6px 22px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    text-align: center;
    background: #e5e5e5;
    margin: 5px;
    border-radius: 30px;
}
.books_details_sidebar .item_box .worklabel_box a:hover{
    background: #1b88dd;
    color: #fff;
}
.books_details_sidebar .item_box .related_books_box{
    width: 100%;
    height: auto;
}
.books_details_sidebar .related_books_list{
    width: 100%;
    height: auto;
}
.books_details_sidebar .related_books_list ul li{
    float: left;
    width: 100%;
    height: auto;
    margin: 10px 0;
    box-sizing: border-box;
}
.books_details_sidebar .related_books_list ul li a{
    display: block;
    width: 100%;
    height: auto;
    min-height: 70px;
    position: relative;
    padding-right: 90px;
    box-sizing: border-box;
}
.books_details_sidebar .related_books_list ul li .pic_box{
    width: 55px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 6px;
    overflow: hidden;
}
.books_details_sidebar .related_books_list ul li .pic_box .pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}
.books_details_sidebar .related_books_list ul li .text_box{
    width: 100%;
    height: auto; 
}
.books_details_sidebar .related_books_list ul li .text_box .text_title {
    width: 100%;
    height:auto;
    max-height: 44px;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    font-weight:600;
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.books_details_sidebar .related_books_list ul li .text_box .price {
    font-size: 14px;
    color: #f59e07;
    line-height: 20px;
    margin-top: 5px;
}
.books_details_sidebar .related_books_list ul li:hover .text_box .text_title {
    color: #1874bc;
}

/* book_free_trials_page */
.book_free_trials_page{
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.book_free_trials_container{
    max-width: 1000px;
    width: 100%;
    height: auto;
    min-height: 350px;
    padding: 40px 80px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 4%);
    border-radius: 6px;
    margin: 0 auto;
}
.book_free_trials_container .title_box{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    border-bottom: 3px solid #1b88dd;
    margin-bottom: 30px;
}
.book_free_trials_container .title_box h3{
    font-size: 24px;
    color: #333333;
    line-height: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}
.book_free_trials_container .title_box .box{
    width: 100%;
    height: auto;
    text-align: center;
}
.book_free_trials_container .title_box .box p{
    display: inline-block;
    font-size: 12px;
    color: #666;
    line-height: 20px;
    text-align: center;
    margin: 0 10px;
}
.book_free_trials_container .text_box{
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #666;
    line-height: 26px;
} 

.book_free_trials_bottom{
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    margin: 20px 0;
    margin-top: 40px;
    text-align: center;
}
.book_free_trials_bottom a{
    display: inline-block;
    width: 120px;
    height: auto;
    box-sizing: border-box;
    padding: 6px 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    background: #ededed;
    margin: 0 15px;

    padding-left:40px;
    box-sizing:border-box;
}
.book_free_trials_bottom a:hover{
    background: #1b88dd;
    color: #fff;
}


.book_free_trials_bottom .tsxz_link{
    background: #dedede url(../images/books_download_icon1.png) no-repeat 25px center;
    background-size:24px;
}
.book_free_trials_bottom .tsxz_link:hover{
    background: #1b88dd url(../images/books_download_icon.png) no-repeat 25px center;
    background-size:24px;
    color: #fff;
}

.book_free_trials_bottom .share_link{
    background: #dedede url(../images/books_fx_icon1.png) no-repeat 25px center;
    background-size:24px;
}
.book_free_trials_bottom .share_link:hover{
    background: #1b88dd url(../images/books_fx_icon1_hover.png) no-repeat 25px center;
    background-size:24px;
    color: #fff;
}

.book_free_trials_bottom .sc_link{
    background: #dedede url(../images/books_sc_icon.png) no-repeat 25px center;
    background-size:24px;
}
.book_free_trials_bottom .sc_link:hover{
    background: #1b88dd url(../images/books_sc_icon_hover.png) no-repeat 25px center;
    background-size:24px;
    color: #fff;
}