/*
 Theme Name:   GP AFF - GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Zhipeng Xiong
 Author URI:   https://example.com
 Template:     generatepress
 Version:      0.1
*/

/*overall-rating*/
.rating-center-container{
	display:flex;
	justify-content:center;
    margin-top: 20px;
}
.space-sidebar-section-left .overall-rating {
    width: fit-content;
    position: relative;
    margin-bottom: 20px;
}
.space-sidebar-section-left .overall-rating::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    margin: 0 auto;
    background-color: #dfe6e9;
}
.overall-rating{
  background-color: #f8f8f8;
  padding: 5px 12px;
  border-radius: 20px;
}
.overall-rating span{
	font-size: 15px;
	line-height: 15px;
    letter-spacing: 2px;
}
.overall-rating strong{
	margin: 0 0 0 8px;
    font-size: 13px;
    font-weight: 700;
	color: #c1d6d9;
}

.store-highlight ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center; /* 父元素文字居中 */
}

.store-highlight ul li ,.store-highlight p{
    position: relative;
    padding-left: 23px; /* 给文字预留空间 */
    /* display: inline-block; 让每个 li 可以在文字中间居中 */
    line-height: 1.6em;
    text-align: left;  /*让文字和图标对齐 */
}
.store-highlight p{
    margin-bottom: 0;
}

.store-highlight ul li::before,.store-highlight p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url(./images/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#content .comments-area {
    background-color: #f1f3f4;
    border-radius: 5px;
    padding: 30px 30px 15px;
    font-size: 19px;
}
h3.comment-reply-title {
    padding-top: 0;
    margin: 10px 0;
}
form.comment-form input[type="text"], form.comment-form input[type="email"],form.comment-form input[type="url"], form.comment-form textarea{
    overflow: hidden;
    line-height: 1.45em;
    border-radius: 5px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #e4e4e4;
}
form.comment-form input[type="text"]:focus,form.comment-form input[type="email"]:focus,form.comment-form input[type="url"]:focus, form.comment-form textarea:focus {
    color: var(--contrast);
    background-color: #ffffff;
    border-color: #fff;
    outline: none;
}